Skip to content

Commit a12e10b

Browse files
committed
Add test report
1 parent 0b5994c commit a12e10b

File tree

3 files changed

+55
-4
lines changed

3 files changed

+55
-4
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
dist/
22
node_modules/
3-
coverage/
3+
coverage/
4+
test-report/

package-lock.json

+43
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+10-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"scripts": {
1111
"build": "rimraf dist/ && babel src --out-dir dist --copy-files",
1212
"start": "npm run build && node dist/index.js",
13-
"test": "jest --watchAll --no-cache --coverage"
13+
"test": "jest --coverage "
1414
},
1515
"keywords": [
1616
"nodejs",
@@ -22,8 +22,14 @@
2222
],
2323
"license": "MIT",
2424
"jest": {
25-
"collectCoverage": true,
26-
"coverageReporters": ["json", "html"]
25+
"reporters": [
26+
"default",
27+
["jest-html-reporters", {
28+
"publicPath": "./test-report",
29+
"filename": "index.html",
30+
"expand": true
31+
}]
32+
]
2733
},
2834
"devDependencies": {
2935
"@babel/cli": "^7.12.1",
@@ -36,6 +42,7 @@
3642
"eslint-plugin-import": "^2.22.1",
3743
"eslint-plugin-prettier": "^3.1.4",
3844
"jest": "^26.6.0",
45+
"jest-html-reporters": "^2.1.0",
3946
"nodemon": "^2.0.6",
4047
"prettier": "^2.1.2",
4148
"rimraf": "^3.0.2",

0 commit comments

Comments
 (0)