mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-11 23:46:34 +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();
|
|
});
|