blob: e71b9b1546195b499c0413c99f6f053e1c5c04d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env sh
set -eu
redundancyFiles=$(find server/tests/api/redundancy -type f | grep -v index.ts | xargs echo)
activitypubFiles=$(find server/tests/api/activitypub -type f | grep -v index.ts | xargs echo)
MOCHA_PARALLEL=true npm run mocha -- --parallel --jobs $1 --timeout 30000 --exit \
--require ts-node/register --files --require tsconfig-paths/register --bail \
$redundancyFiles $activitypubFiles
|