mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
* feat(editor,core,data-source,dep,schema,ui,utils,vue-runtime-help): 完善迭代器 * test: 完善测试用例 * chore: 构建 * feat: 迭代器嵌套事件传递数据 --------- Co-authored-by: roymondchen <roymondchen@tencent.com>
18 lines
380 B
TypeScript
18 lines
380 B
TypeScript
import { describe, expect, test } from 'vitest';
|
|
import path from 'node:path';
|
|
|
|
import Core from '../src/Core';
|
|
|
|
describe('Core', () => {
|
|
test('instance', () => {
|
|
const core = new Core({
|
|
packages: [],
|
|
source: './a',
|
|
temp: './b',
|
|
});
|
|
expect(core).toBeInstanceOf(Core);
|
|
|
|
expect(core.dir.temp()).toBe(path.join(process.cwd(), './a/b'));
|
|
});
|
|
});
|