2018-03-27 10:35:12 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -eu
|
2017-10-31 17:23:57 +01:00
|
|
|
|
|
|
|
if [ $# -eq 0 ]; then
|
|
|
|
echo "Need test suite argument."
|
|
|
|
exit -1
|
|
|
|
fi
|
|
|
|
|
2017-11-30 13:16:23 +01:00
|
|
|
if [ "$1" = "misc" ]; then
|
2017-10-31 17:23:57 +01:00
|
|
|
npm run build
|
2018-06-08 20:34:37 +02:00
|
|
|
mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/client.ts server/tests/activitypub.ts \
|
|
|
|
server/tests/feeds/feeds.ts
|
2017-10-31 17:23:57 +01:00
|
|
|
elif [ "$1" = "api" ]; then
|
2017-10-31 17:33:23 +01:00
|
|
|
npm run build:server
|
2018-02-28 09:52:13 +01:00
|
|
|
mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/api/index.ts
|
2017-10-31 17:23:57 +01:00
|
|
|
elif [ "$1" = "cli" ]; then
|
2017-10-31 17:33:23 +01:00
|
|
|
npm run build:server
|
2018-02-28 09:52:13 +01:00
|
|
|
mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/cli/index.ts
|
2017-10-31 17:50:28 +01:00
|
|
|
elif [ "$1" = "api-fast" ]; then
|
|
|
|
npm run build:server
|
2018-02-28 09:52:13 +01:00
|
|
|
mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/api/index-fast.ts
|
2017-10-31 17:50:28 +01:00
|
|
|
elif [ "$1" = "api-slow" ]; then
|
|
|
|
npm run build:server
|
2018-02-28 09:52:13 +01:00
|
|
|
mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/api/index-slow.ts
|
2017-10-31 17:23:57 +01:00
|
|
|
elif [ "$1" = "lint" ]; then
|
2018-03-27 10:35:12 +02:00
|
|
|
( cd client
|
|
|
|
npm run lint
|
|
|
|
)
|
2017-10-31 17:23:57 +01:00
|
|
|
|
2018-03-27 10:35:12 +02:00
|
|
|
npm run tslint -- --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" "shared/**/*.ts"
|
2017-10-31 17:23:57 +01:00
|
|
|
fi
|