Files
AFFiNE-Mirror/apps/electron/tests/setup.ts
2023-05-17 14:14:39 +08:00

9 lines
199 B
TypeScript

import { execSync } from 'node:child_process';
import { join } from 'node:path';
export default async function () {
execSync('yarn ts-node-esm scripts/', {
cwd: join(__dirname, '..'),
});
}