import { describe, expect, it } from 'vitest'; import SidebarItem from '../../src/lib/components/layout/SidebarItem.svelte'; describe('SidebarItem component', () => { it('exports a component module', () => { expect(SidebarItem).toBeDefined(); expect(typeof SidebarItem).toBe('function'); }); });