1
0
Fork 0
peertube/scripts/travis.sh

30 lines
1.1 KiB
Bash
Raw Normal View History

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