mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-07-02 00:17:19 +08:00
6 lines
155 B
TypeScript
6 lines
155 B
TypeScript
import { expect, test } from 'vitest';
|
|
import { components } from '../src';
|
|
test('components', () => {
|
|
expect(Array.isArray(components)).toBe(true);
|
|
});
|