Skip to content

Commit f0ef37e

Browse files
committed
为 @object-ui/plugin-charts、@object-ui/plugin-editor、@object-ui/plugin-kanban 和 @object-ui/plugin-markdown 添加基础测试
1 parent 8c2d2d4 commit f0ef37e

4 files changed

Lines changed: 28 additions & 0 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { describe, it, expect } from 'vitest';
2+
3+
describe('@object-ui/plugin-charts', () => {
4+
it('should pass', () => {
5+
expect(true).toBe(true);
6+
});
7+
});
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { describe, it, expect } from 'vitest';
2+
3+
describe('@object-ui/plugin-editor', () => {
4+
it('should pass', () => {
5+
expect(true).toBe(true);
6+
});
7+
});
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { describe, it, expect } from 'vitest';
2+
3+
describe('@object-ui/plugin-kanban', () => {
4+
it('should pass', () => {
5+
expect(true).toBe(true);
6+
});
7+
});
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { describe, it, expect } from 'vitest';
2+
3+
describe('@object-ui/plugin-markdown', () => {
4+
it('should pass', () => {
5+
expect(true).toBe(true);
6+
});
7+
});

0 commit comments

Comments
 (0)