mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 11:09:21 +00:00
13 lines
383 B
TypeScript
13 lines
383 B
TypeScript
import { describe, it, expect, expectTypeOf } from 'vitest';
|
|
import { definePlugin, type Plugin, createPluginManager } from '../src/plugin';
|
|
|
|
describe('createPluginManager', () => {
|
|
it('should install plugin successfully', () => {});
|
|
|
|
it('should install plugins when deps installed', () => {});
|
|
});
|
|
|
|
describe('definePlugin', () => {
|
|
it('should return a plugin', () => {});
|
|
});
|