Skip to content

Commit 7f41e45

Browse files
committed
fix: coveragePathIgnorePatterns to /out
We were accidentally ignoring `node/routes` because we had "out" instead of "/out" in `coveragePathIgnorePatterns` which caused us to not collect coverage for those files. Now we do.
1 parent 027106a commit 7f41e45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
"clover"
143143
],
144144
"coveragePathIgnorePatterns": [
145-
"out"
145+
"/out"
146146
],
147147
"coverageThreshold": {
148148
"global": {

0 commit comments

Comments
 (0)