1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-12-04 05:02:41 +03:00

Make test coverage work again

* don't try to run npm under istanbul
* use _mocha instead of mocha because
  https://github.com/gotwarlost/istanbul/issues/44#issuecomment-16093330

Also:
* write a text report for better travis
* On jenkins, clear out old coverage reports so that we don't pick up last
  time's.
This commit is contained in:
Richard van der Hoff
2017-02-15 16:50:00 +00:00
parent 7f8f216263
commit 75d213f6b3
2 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,7 @@ function fail {
}
# don't use last time's test reports
rm -rf reports || exit $?
rm -rf reports coverage || exit $?
npm test || fail "npm test finished with return code $?"