Cleanup after initial plan
This commit is contained in:
parent
d2a7e652b3
commit
245520fb50
53 changed files with 6733 additions and 621 deletions
16
packages/web/src/components/ui/__tests__/index.test.ts
Normal file
16
packages/web/src/components/ui/__tests__/index.test.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import { describe, it, expect } from 'vitest';
|
||||
import * as UI from '../index';
|
||||
|
||||
describe('UI Index Exports', () => {
|
||||
it('should export all defined UI components', () => {
|
||||
expect(UI.Icon).toBeDefined();
|
||||
expect(UI.Card).toBeDefined();
|
||||
expect(UI.Button).toBeDefined();
|
||||
expect(UI.Pill).toBeDefined();
|
||||
expect(UI.SupplyBar).toBeDefined();
|
||||
expect(UI.Ring).toBeDefined();
|
||||
expect(UI.SparkBars).toBeDefined();
|
||||
expect(UI.IconButton).toBeDefined();
|
||||
expect(UI.Avatar).toBeDefined();
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue