Tests refactor
This commit is contained in:
parent
245520fb50
commit
99134d8556
165 changed files with 911 additions and 531 deletions
16
packages/web/tests/components/ui/index.test.ts
Normal file
16
packages/web/tests/components/ui/index.test.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import { describe, it, expect } from 'vitest';
|
||||
import * as UI from '../../../src/components/ui/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