Testing stage in pipeline
... | ... | @@ -6,7 +6,9 @@ |
"scripts": { | ||
"build": "webpack src/app.js -o public/js/app.js", | ||
"start": "http-server -c-1 -p 12345 public", | ||
"test": "jest" | ||
"test": "jest", | ||
"test-changed": "jest --only-changed", | ||
"test-coverage": "jest --coverage" | ||
}, | ||
"dependencies": { | ||
"http-server": "^0.11.1", | ||
... | ... |
Please register or sign in to comment