diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-04-26 21:52:49 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-04-26 21:52:49 +0200 |
commit | 165c8d2558828516a449c75edf3116f7dbc8c07c (patch) | |
tree | 4abe534631e1f458474625b5e52af806f18615dd /scripts | |
parent | d61e81538bb67899c23881b6fe921cdee4a3e49a (diff) | |
download | PeerTube-165c8d2558828516a449c75edf3116f7dbc8c07c.tar.gz PeerTube-165c8d2558828516a449c75edf3116f7dbc8c07c.tar.zst PeerTube-165c8d2558828516a449c75edf3116f7dbc8c07c.zip |
Fix travis lint tests
Diffstat (limited to 'scripts')
-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 93dbd8200..b341fc0d0 100755 --- a/scripts/test.sh +++ b/scripts/test.sh | |||
@@ -1,8 +1,8 @@ | |||
1 | #!/usr/bin/env sh | 1 | #!/usr/bin/env sh |
2 | 2 | ||
3 | cd client || exit -1 | 3 | cd client || exit -1 |
4 | npm test | 4 | npm test || exit -1 |
5 | 5 | ||
6 | cd .. || exit -1 | 6 | cd .. || exit -1 |
7 | standard | 7 | standard || exit -1 |
8 | mocha server/tests | 8 | mocha server/tests |