mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
19 lines
381 B
TypeScript
19 lines
381 B
TypeScript
import path from 'node:path';
|
|
|
|
import { describe, expect, test } from 'vitest';
|
|
|
|
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'));
|
|
});
|
|
});
|