1
0
Fork 0
peertube/scripts/test.sh
2017-09-04 21:30:18 +02:00

10 lines
268 B
Bash
Executable file

#!/bin/bash
npm run build:server
cd client || exit -1
npm test || exit -1
cd .. || exit -1
npm run tslint -- --type-check --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" || exit -1
mocha --require ts-node/register --bail server/tests/index.ts