chore: fix test:report bailing (#349)

This commit is contained in:
Shelley Vohr
2020-03-11 12:32:03 -07:00
committed by GitHub
parent 2f9ef21251
commit 48d0dadf5d
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -5,6 +5,7 @@
"testURL": "http://localhost",
"testRegex": "(-spec)\\.(ts|tsx)$",
"resetMocks": true,
"bail": true,
"resetModules": true,
"snapshotSerializers": [
"enzyme-to-json/serializer"
+1 -1
View File
@@ -22,7 +22,7 @@
"test": "jest --config=jest.json",
"test:ci": "jest --config=jest.json --coverage --runInBand",
"test:coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:report": "jest --config=jest.json --json --outputFile=report.json | exit 0",
"test:report": "jest --config=jest.json --json --bail=false --outputFile=report.json | true",
"tsc": "tsc --noEmit -p .",
"electron-releases": "node --unhandled-rejections=strict ./tools/fetch-releases.js"
},