Skip to content

Commit

Permalink
Fix ignore test paths on test:e2e:coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
csouchet committed Nov 27, 2020
1 parent 1214924 commit 3e80f0c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@
"lint-check": "tsc --noEmit && eslint \"*/**/*.{js,ts,tsx}\" NOTICE --max-warnings 0",
"test": "run-s test:unit test:e2e",
"test:unit": "jest --runInBand --config=./test/unit/jest.config.js",
"test:unit:coverage": "jest --runInBand --config=./test/unit/jest.config.js --coverage",
"test:unit:watch": "jest --runInBand --config=./test/unit/jest.config.js --coverage --watchAll",
"test:unit:coverage": "npm run test:unit -- --coverage",
"test:unit:watch": "npm run test:unit:coverage -- --watchAll",
"test:e2e": "cross-env DEBUG=test JEST_IMAGE_SNAPSHOT_TRACK_OBSOLETE=1 JEST_PUPPETEER_CONFIG=./test/e2e/jest-puppeteer.config.js jest --runInBand --detectOpenHandles --testPathIgnorePatterns ./test/e2e/performance --config=./test/e2e/jest.config.js",
"test:perf": "cd ./test/e2e && jest --runInBand --detectOpenHandles --testNamePattern=performance",
"test:e2e:coverage": "cross-env JEST_IMAGE_SNAPSHOT_TRACK_OBSOLETE=1 jest --runInBand --detectOpenHandles --config=./test/e2e/jest.config.js --coverage"
"test:e2e:coverage": "npm run test:e2e -- --coverage"
},
"dependencies": {
"entities": "^2.1.0",
Expand Down

0 comments on commit 3e80f0c

Please sign in to comment.