MeshiTrack/packages/web/src/components/ui/__tests__/index.test.ts

17 lines
518 B
TypeScript
Raw Normal View History

2026-05-19 10:13:40 +09:00
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();
});
});