PeerTube/scripts/travis.sh

30 lines
1.1 KiB
Bash
Raw Normal View History

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
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
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-03-08 17:31:11 +01:00
npm run tslint -- --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" "shared/**/*.ts" || exit -1
2017-10-31 17:23:57 +01:00
fi