2017-10-31 17:23:57 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
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-02-28 09:52:13 +01:00
|
|
|
mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/client.ts server/tests/activitypub.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
|
|
|
|
cd client || exit -1
|
|
|
|
npm run lint || exit -1
|
|
|
|
|
|
|
|
cd .. || exit -1
|
2018-01-24 10:33:50 +01:00
|
|
|
npm run tslint -- --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" || exit -1
|
2017-10-31 17:23:57 +01:00
|
|
|
fi
|