Merge branch 'slb/dperez50/adding-lcov-report' into 'master'
Slb/dperez50/adding lcov report See merge request !120
... | ... | @@ -15,6 +15,8 @@ |
"test": "env UTEST=true mocha -r ts-node/register tests/utest/test.ts", | ||
"test-coverage": "env UTEST=true nyc mocha -r ts-node/register --reporter mocha-junit-reporter tests/utest/test.ts", | ||
"test-automation": "npm run clean && npm install && npm run build && npm run test-coverage", | ||
"test-lcov-automation": "npm run clean && npm install && npm run build && npm run test-lcov-coverage", | ||
"test-lcov-coverage": "env UTEST=true nyc mocha -r ts-node/register -r source-map-support/register --recursive -R mocha-bamboo-reporter tests/utest/test.ts", | ||
"test-e2e-parallel": "node ./tests/e2e/parallel/run_e2e_tests_parallel.js", | ||
"copy-static-files": "copyfiles --error --up 1 ./docs/api/openapi.osdu.yaml ./dist/docs", | ||
"postbuild": "npm run copy-static-files" | ||
... | ... | @@ -34,7 +36,9 @@ |
"reporter": [ | ||
"text-summary", | ||
"html", | ||
"cobertura" | ||
"cobertura", | ||
"clover", | ||
"lcovonly" | ||
], | ||
"sourceMap": true, | ||
"instrument": true | ||
... | ... | @@ -116,12 +120,14 @@ |
"js-yaml": "^3.13.1", | ||
"lodash.merge": "^4.6.2", | ||
"mocha": "^8.4.0", | ||
"mocha-bamboo-reporter": "^1.1.2", | ||
"mocha-junit-reporter": "1.23.3", | ||
"newman": "^4.6.1", | ||
"nyc": "^15.0.0", | ||
"path": "^0.12.7", | ||
"redis-mock": "^0.49.0", | ||
"sinon": "8.1.1", | ||
"source-map-support": "^0.5.19", | ||
"ts-node": "^9.1.1", | ||
"tslint": "6.0.0", | ||
"tslint-no-unused-expression-chai": "0.1.4" | ||
... | ... |
Please register or sign in to comment