Fix console output for JS tests

The string identifying the tests run shouldn't
include their status, that's added by
`display_result`.
This commit is contained in:
Tom Byers
2019-11-28 15:26:24 +00:00
parent 19bafd9caf
commit 5c11d89792
+1 -1
View File
@@ -34,7 +34,7 @@ isort --check-only -rc ./app ./tests
display_result $? 2 "Import order check"
npm test
display_result $? 3 "Javascript tests have failed"
display_result $? 3 "Javascript tests have"
## Code coverage
py.test -n auto --maxfail=10 --cov=app --cov-report=term-missing tests/ --junitxml=test_results.xml --strict -p no:warnings