16 lines
542 B
TypeScript
16 lines
542 B
TypeScript
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();
|
|
});
|
|
});
|