test: consistent avatar urls

This commit is contained in:
Benjamin Canac
2024-10-17 16:33:50 +02:00
parent e137577a72
commit 716ed10068
18 changed files with 103 additions and 103 deletions

View File

@@ -12,7 +12,7 @@ describe('Separator', () => {
['with as', { props: { as: 'span' } }],
['with label', { props: { label: '+1' } }],
['with icon', { props: { icon: 'i-heroicons-photo' } }],
['with avatar', { props: { avatar: { src: 'https://avatars.githubusercontent.com/u/739984?v=4' } } }],
['with avatar', { props: { avatar: { src: 'https://github.com/benjamincanac.png' } } }],
['with orientation vertical', { props: { orientation: 'vertical' as const } }],
['with decorative', { props: { decorative: true } }],
...types.map((type: string) => [`with type ${type}`, { props: { type } }]),