File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 2
2
node_modules
3
3
package-lock.json
4
4
/dist
5
+ /coverage
5
6
6
7
/tests /e2e /reports /
7
8
selenium-debug.log
Original file line number Diff line number Diff line change 1
1
## [ vue] ( ./README.md ) version ` changelog `
2
2
3
+ ##### ` v2.0.0-next `
4
+ - test(unit): add test for User.vue
5
+ - test: add jest config for coverage
6
+
3
7
##### ` v2.0.0-rc.0 `
4
8
- test(unit): add some views testing
5
9
- test(e2e): add testing for mobile ` sidebar-show `
Original file line number Diff line number Diff line change @@ -21,5 +21,11 @@ module.exports = {
21
21
'<rootDir>/tests/unit/Dashboard.spec.js'
22
22
] ,
23
23
verbose : true ,
24
- testURL : "http://localhost/"
24
+ testURL : "http://localhost/" ,
25
+ collectCoverage : true ,
26
+ collectCoverageFrom : [
27
+ "src/**/*.{js,vue}" ,
28
+ "!**/node_modules/**"
29
+ ] ,
30
+ coverageReporters : [ "html" , "text-summary" ]
25
31
}
You can’t perform that action at this time.
0 commit comments