Hide nyc coverage from test output

Configure nyc/istanbul to generate an HTML report that can be inspected
in a browser instead of printing a long table after each test run.
This commit is contained in:
Miroslav Bajtoš 2018-07-09 17:01:52 +02:00
parent 38d5b5b4fa
commit bc2689f58d
No known key found for this signature in database
GPG Key ID: 6F2304BA9361C7E3
1 changed files with 3 additions and 0 deletions

3
.nycrc
View File

@ -2,5 +2,8 @@
"exclude": [
"test/**/*.js"
],
"reporter": [
"html"
],
"cache": true
}