test: missing props in with ui

This commit is contained in:
Benjamin Canac
2024-05-27 14:51:44 +02:00
parent c9c685a01c
commit 88926091d5
8 changed files with 348 additions and 211 deletions

View File

@@ -26,7 +26,7 @@ describe('Breadcrumb', () => {
['with items', { props }],
['with separatorIcon', { props: { ...props, separatorIcon: 'i-heroicons-minus' } }],
['with class', { props: { ...props, class: 'w-48' } }],
['with ui', { props: { ui: { ...props, item: 'font-bold' } } }],
['with ui', { props: { ...props, ui: { link: 'font-bold' } } }],
// Slots
['with item slot', { props, slots: { item: () => 'Item slot' } }],
['with item-leading slot', { props, slots: { 'item-leading': () => 'Item leading slot' } }],