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-05-15 11:17:14 -04:00
|
|
|
MOCHA_PARALLEL=true mocha --timeout 5000 --exit --require ts-node/register --bail \
|
2019-04-25 11:14:49 -04:00
|
|
|
$notificationsFiles $searchFiles $checkParamFiles
|