From 3fc06ed1da56ecb00acceca3fd904dcf20aaf777 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Wed, 29 May 2024 14:41:35 +0200 Subject: [PATCH] test(NavigationMenu): improve --- test/components/NavigationMenu.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/components/NavigationMenu.spec.ts b/test/components/NavigationMenu.spec.ts index 26fbdff7..6302e823 100644 --- a/test/components/NavigationMenu.spec.ts +++ b/test/components/NavigationMenu.spec.ts @@ -88,7 +88,7 @@ describe('NavigationMenu', () => { ...colors.map((highlightColor: string) => [`with highlight color ${highlightColor}`, { props: { ...props, highlight: true, highlightColor } }]), ['with trailingIcon', { props: { ...props, trailingIcon: 'i-heroicons-plus' } }], ['with class', { props: { ...props, class: 'w-48' } }], - ['with ui', { props: { items, ui: { itemLeadingIcon: 'size-4' } } }], + ['with ui', { props: { ...props, ui: { itemLeadingIcon: 'size-4' } } }], // Slots ['with item slot', { props, slots: { item: () => 'Item slot' } }], ['with item-leading slot', { props, slots: { 'item-leading': () => 'Item leading slot' } }],