aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/ci-1.sh
blob: 90ffd568b9fa81f023ef45904d7cfbe91a0fc739 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env sh

set -eu

checkParamFiles=$(find server/tests/api/check-params -type f | grep -v index.ts | xargs echo)
notificationsFiles=$(find server/tests/api/notifications -type f | grep -v index.ts | xargs echo)
searchFiles=$(find server/tests/api/search -type f | grep -v index.ts | xargs echo)

MOCHA_PARALLEL=true npm run mocha -- --timeout 30000 --exit --require ts-node/register --bail \
    $notificationsFiles $searchFiles $checkParamFiles