mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-07-02 00:17:19 +08:00
7 lines
127 B
TypeScript
7 lines
127 B
TypeScript
import { expect, test } from 'vitest';
|
|
import { uid } from '../src';
|
|
|
|
test('base', () => {
|
|
expect(!!uid()).toBeTruthy();
|
|
});
|