Complete UI foundation and app layout implementation, stabilize container health checks, and archive both OpenSpec changes after verification.
10 lines
309 B
TypeScript
10 lines
309 B
TypeScript
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');
|
|
});
|
|
});
|