1
0
Fork 0
peertube/scripts/travis.sh

35 lines
1.1 KiB
Bash
Raw Normal View History

2018-03-27 08:35:12 +00:00
#!/bin/sh
set -eu
2017-10-31 16:23:57 +00:00
if [ $# -eq 0 ]; then
echo "Need test suite argument."
exit -1
fi
2018-07-31 08:26:13 +00:00
killall -q peertube || true
2017-11-30 12:16:23 +00:00
if [ "$1" = "misc" ]; then
2017-10-31 16:23:57 +00:00
npm run build
2018-06-08 18:34:37 +00: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 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
2018-03-27 08:35:12 +00:00
( cd client
npm run lint
)
2017-10-31 16:23:57 +00:00
2018-03-27 08:35:12 +00:00
npm run tslint -- --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" "shared/**/*.ts"
2017-10-31 16:23:57 +00:00
fi