Files
vtj/packages/parser/tests/index.test.ts
“chenhuachun” d059103441 AI测试用例
2025-04-19 16:07:05 +08:00

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();
});