File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 7
7
script :
8
8
- npm run test:unit
9
9
after_script :
10
- - cat ./coverage/lcov.info | coveralls
10
+ - cat ./tests/ coverage/lcov.info | coveralls
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ module.exports = {
13
13
testMatch : [ "**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)" ] ,
14
14
testURL : "http://localhost/" ,
15
15
watchPlugins : [ "jest-watch-typeahead/filename" , "jest-watch-typeahead/testname" ] ,
16
- collectCoverage : false ,
16
+ collectCoverage : true ,
17
17
collectCoverageFrom : [
18
18
"**/*.{js,vue}" ,
19
19
"!**/node_modules/**" ,
@@ -23,6 +23,6 @@ module.exports = {
23
23
"!**/docs/**" ,
24
24
"!**/public/**"
25
25
] ,
26
- coverageReporters : [ "html " , "text-summary" ] ,
26
+ coverageReporters : [ "lcov " , "text-summary" ] ,
27
27
coverageDirectory : "<rootDir>/tests/coverage"
28
28
}
You can’t perform that action at this time.
0 commit comments