1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-08 23:25:51 +01:00

(test): Move mocha options to mocha config file

This commit is contained in:
Juan Picado @jotadeveloper 2017-06-30 23:09:17 +02:00
parent 96c9f459c1
commit 1926522f99
No known key found for this signature in database
GPG Key ID: 18AC54485952D158
2 changed files with 4 additions and 3 deletions

@ -72,7 +72,7 @@
"server"
],
"scripts": {
"test": "npm run lint && mocha ./test/functional ./test/unit --reporter=spec --full-trace",
"test": "npm run lint && mocha ./test/functional ./test/unit",
"test:coverage": "nyc mocha -R spec ./test/functional ./test/unit",
"coverage:coveralls": "nyc report --reporter=text-lcov | coveralls",
"coverage:codecov": "nyc report --reporter=lcov | codecov",

@ -1,3 +1,4 @@
--reporter dot
--reporter spec
--timeout 5000
--inline-diffs
--full-trace
--colors