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