mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-07-02 00:17:19 +08:00
7 lines
138 B
TypeScript
7 lines
138 B
TypeScript
import { expect, test } from 'vitest';
|
|
import * as Renderer from '../src';
|
|
|
|
test('index', () => {
|
|
expect(!!Renderer).toEqual(true);
|
|
});
|