mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-22 07:58:28 +08:00
7 lines
136 B
TypeScript
7 lines
136 B
TypeScript
import { expect, test } from 'vitest';
|
|
import plugin from '../src';
|
|
|
|
test('plugin', () => {
|
|
expect(!!plugin.plugin).toBeTruthy();
|
|
});
|