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

fix: update test scripts webpack build included

This commit is contained in:
Juan Picado @jotadeveloper 2017-07-09 10:43:43 +02:00
parent 31be70a18c
commit 2e38c0ebae
No known key found for this signature in database
GPG Key ID: 18AC54485952D158

@ -113,11 +113,12 @@
"server"
],
"scripts": {
"test": "npm run lint && mocha ./test/functional ./test/unit --reporter=spec --full-trace",
"test:coverage": "nyc mocha -R spec ./test/functional ./test/unit",
"pretest": "npm run lint && npm run build:webui",
"test": "npm run pretest && mocha ./test/functional ./test/unit --reporter=spec --full-trace",
"test:coverage": "nyc npm t",
"coverage:html": "nyc report --reporter=html",
"coverage:codecov": "nyc report --reporter=lcov | codecov",
"test-travis": "npm run lint && npm run test:coverage",
"test-travis": "npm run pretest && npm run test:coverage",
"test-only": "mocha ./test/functional ./test/unit",
"lint": "eslint .",
"build-docker": "docker build -t verdaccio .",