mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-26 15:33:03 +03:00
66 lines
1.4 KiB
TypeScript
Executable File
66 lines
1.4 KiB
TypeScript
Executable File
#!/usr/bin/env ts-node-esm
|
|
import { resolve } from 'node:path';
|
|
|
|
import * as p from '@clack/prompts';
|
|
import { spawn } from 'child_process';
|
|
import { readdir } from 'fs/promises';
|
|
import * as process from 'process';
|
|
import { fileURLToPath } from 'url';
|
|
|
|
import pkg from '../package.json' assert { type: 'json' };
|
|
const root = fileURLToPath(new URL('..', import.meta.url));
|
|
const testDir = resolve(root, 'src', 'tests');
|
|
const files = await readdir(testDir);
|
|
|
|
const sharedArgs = [...pkg.nodemonConfig.nodeArgs, '--test'];
|
|
|
|
const env = {
|
|
PATH: process.env.PATH,
|
|
NODE_ENV: 'test',
|
|
DATABASE_URL: process.env.DATABASE_URL,
|
|
};
|
|
|
|
if (process.argv[2] === 'all') {
|
|
const cp = spawn('node', [...sharedArgs, resolve(testDir, '*')], {
|
|
cwd: root,
|
|
env,
|
|
stdio: 'inherit',
|
|
shell: true,
|
|
});
|
|
cp.on('exit', code => {
|
|
process.exit(code ?? 0);
|
|
});
|
|
} else {
|
|
const result = await p.group({
|
|
file: () =>
|
|
p.select({
|
|
message: 'Select a file to run',
|
|
options: files.map(file => ({
|
|
label: file,
|
|
value: file as any,
|
|
})),
|
|
}),
|
|
});
|
|
|
|
const target = resolve(testDir, result.file);
|
|
|
|
const cp = spawn(
|
|
'node',
|
|
[
|
|
...sharedArgs,
|
|
'--test-reporter=spec',
|
|
'--test-reporter-destination=stdout',
|
|
target,
|
|
],
|
|
{
|
|
cwd: root,
|
|
env,
|
|
stdio: 'inherit',
|
|
shell: true,
|
|
}
|
|
);
|
|
cp.on('exit', code => {
|
|
process.exit(code ?? 0);
|
|
});
|
|
}
|