Complete UI foundation and app layout implementation, stabilize container health checks, and archive both OpenSpec changes after verification.
10 lines
246 B
TypeScript
10 lines
246 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import { Menu } from 'lucide-svelte';
|
|
|
|
describe('lucide icon', () => {
|
|
it('exports menu icon component', () => {
|
|
expect(Menu).toBeDefined();
|
|
expect(typeof Menu).toBe('function');
|
|
});
|
|
});
|