Skip to content

Commit ac1ba6c

Browse files
chore: fix coverage
1 parent 25aa2c0 commit ac1ba6c

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,14 @@
6464
},
6565
"jest": {
6666
"collectCoverageFrom": [
67-
"src/**/*.{js,ts,jsx,tsx}",
68-
"test/**/*.{spec,it,test,e2e}.{js,jsx,ts,tsx}",
67+
"**/src/**/*.{js,ts,jsx,tsx}",
68+
"**/test/**/*.spec.{js,jsx,ts,tsx}",
69+
"**/test/**/*.it.{js,jsx,ts,tsx}",
70+
"**/test/**/*.test.{js,jsx,ts,tsx}",
71+
"**/test/**/*.e2e.{js,jsx,ts,tsx}",
6972
"!/node_modules/",
70-
"!src/swagger.ts",
71-
"!src/utils/**/*.{js,ts,jsx,tsx}"
73+
"!**/src/swagger.ts",
74+
"!**/src/utils/**/*.{js,ts,jsx,tsx}"
7275
]
7376
},
7477
"dependencies": {

0 commit comments

Comments
 (0)