mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-07-02 00:17:19 +08:00
11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
import { expect, test } from 'vitest';
|
|
import { parseUniApp } from '../src';
|
|
import { App } from './UniApp';
|
|
|
|
test('index', async () => {
|
|
const result = parseUniApp(App);
|
|
// console.log(result);
|
|
|
|
expect(true).toBeTruthy();
|
|
});
|