diff options
Diffstat (limited to 'server/tests/api/ci-1.sh')
-rw-r--r-- | server/tests/api/ci-1.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/server/tests/api/ci-1.sh b/server/tests/api/ci-1.sh new file mode 100644 index 000000000..8dd9756a5 --- /dev/null +++ b/server/tests/api/ci-1.sh | |||
@@ -0,0 +1,10 @@ | |||
1 | #!/usr/bin/env sh | ||
2 | |||
3 | set -eu | ||
4 | |||
5 | checkParamFiles=$(find server/tests/api/check-params -type f | grep -v index.ts | xargs echo) | ||
6 | notificationsFiles=$(find server/tests/api/notifications -type f | grep -v index.ts | xargs echo) | ||
7 | searchFiles=$(find server/tests/api/search -type f | grep -v index.ts | xargs echo) | ||
8 | |||
9 | MOCHA_PARALLEL=true npm run mocha --timeout 30000 --exit --require ts-node/register --bail \ | ||
10 | $notificationsFiles $searchFiles $checkParamFiles | ||