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.
This commit is contained in:
Joe Previte
2021-05-05 16:38:54 -07:00
parent 027106a5e1
commit cb5ab48d48
2 changed files with 60 additions and 100 deletions

View File

@@ -142,7 +142,7 @@
"clover"
],
"coveragePathIgnorePatterns": [
"out"
"/out"
],
"coverageThreshold": {
"global": {