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