AFFiNE/apps/electron/tests/setup.ts
2023-05-11 20:51:13 -05: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, '..'),
});
}