2019-04-25 03:46:02 -04:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
2019-04-26 02:50:52 -04:00
|
|
|
checkParamFiles=$(find server/tests/api/check-params -type f | grep -v index.ts | xargs echo)
|
2019-04-25 11:14:49 -04:00
|
|
|
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)
|
2019-04-25 03:46:02 -04:00
|
|
|
|
2019-10-21 10:24:06 -04:00
|
|
|
MOCHA_PARALLEL=true npm run mocha -- --timeout 30000 --exit --require ts-node/register --require tsconfig-paths/register --bail \
|
2019-04-25 11:14:49 -04:00
|
|
|
$notificationsFiles $searchFiles $checkParamFiles
|