Use recommended flags from issue comments for codecov

This commit is contained in:
dannyrb 2019-07-18 13:52:27 -04:00
parent 3acea218fb
commit fbdb61bcb2
4 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@
"build": "lerna run lerna:build --parallel",
"test:ci": "",
"test:unit": "jest --collectCoverage",
"test:unit:ci": "lerna run test:unit:ci --parallel && codecov",
"test:unit:ci": "lerna run test:unit:ci --parallel",
"test:e2e": "",
"test:e2e:ci": "lerna run lerna:test:e2e --parallel",
"new-version": "lerna version --conventional-commits --yes",

View File

@ -16,7 +16,7 @@
},
"scripts": {
"test:unit": "jest --watch",
"test:unit:ci": "jest --ci --runInBand --collectCoverage && codecov -F core",
"test:unit:ci": "jest --ci --runInBand --collectCoverage && codecov --clear --flags=core",
"build": "rollup -c",
"lerna:build": "webpack --config config/webpack.prod.js -w -d",
"dev": "jest --watch",

View File

@ -16,7 +16,7 @@
],
"scripts": {
"test:unit": "jest --watch",
"test:unit:ci": "jest --ci --runInBand --collectCoverage --passWithNoTests && codecov -F ui",
"test:unit:ci": "jest --ci --runInBand --collectCoverage --passWithNoTests && codecov --clear --flags=ui",
"dev": "docz dev",
"lerna:build": "webpack --config config/webpack.prod.js -w -d",
"build": "rollup -c",

View File

@ -15,7 +15,7 @@
"scripts": {
"lerna:start": "cross-env NODE_ENV=development webpack-dev-server --config config/webpack.dev.js --mode development -w -d",
"test:unit": "jest --watch",
"test:unit:ci": "jest --ci --runInBand --collectCoverage && codecov -F viewer",
"test:unit:ci": "jest --ci --runInBand --collectCoverage && && codecov --clear --flags=viewer",
"dev": "yarn run preBuild && react-scripts start",
"dev:debug": "react-scripts start",
"build:package": "yarn run preBuild && node --max-old-space-size=4096 node_modules/rollup/bin/rollup -c",