mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 19:52:51 +00:00
11 lines
223 B
TypeScript
11 lines
223 B
TypeScript
import { join } from 'path';
|
|
|
|
const baseDir = join(__dirname, '../fixtures');
|
|
|
|
/**
|
|
* 从 fixtures 下获取文件完整路径
|
|
*/
|
|
export const getFromFixtures = (...args: string[]) => {
|
|
return join(baseDir, ...args);
|
|
};
|