diff options
Diffstat (limited to 'scripts/test.sh')
-rwxr-xr-x | scripts/test.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/test.sh b/scripts/test.sh index 6e8e38659..6c6312d52 100755 --- a/scripts/test.sh +++ b/scripts/test.sh | |||
@@ -1,4 +1,4 @@ | |||
1 | #!/usr/bin/env sh | 1 | #!/bin/bash |
2 | 2 | ||
3 | npm run build:server | 3 | npm run build:server |
4 | 4 | ||
@@ -6,5 +6,5 @@ cd client || exit -1 | |||
6 | npm test || exit -1 | 6 | npm test || exit -1 |
7 | 7 | ||
8 | cd .. || exit -1 | 8 | cd .. || exit -1 |
9 | npm run tslint -- --type-check --project ./tsconfig.json -c ./tslint.json server.ts server/**/*.ts || exit -1 | 9 | npm run tslint -- --type-check --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" || exit -1 |
10 | mocha --bail server/tests | 10 | mocha --bail server/tests |