Correctly forward video related activities
[oweals/peertube.git] / scripts / travis.sh
1 #!/bin/sh
2
3 set -eu
4
5 if [ $# -eq 0 ]; then
6     echo "Need test suite argument."
7     exit -1
8 fi
9
10 if [ "$1" = "misc" ]; then
11     npm run build
12     mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/client.ts server/tests/activitypub.ts
13 elif [ "$1" = "api" ]; then
14     npm run build:server
15     mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/api/index.ts
16 elif [ "$1" = "cli" ]; then
17     npm run build:server
18     mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/cli/index.ts
19 elif [ "$1" = "api-fast" ]; then
20     npm run build:server
21     mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/api/index-fast.ts
22 elif [ "$1" = "api-slow" ]; then
23     npm run build:server
24     mocha --timeout 5000 --exit --require ts-node/register/type-check --bail server/tests/api/index-slow.ts
25 elif [ "$1" = "lint" ]; then
26     ( cd client
27       npm run lint
28     )
29
30     npm run tslint -- --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" "shared/**/*.ts"
31 fi