mirror of
https://github.com/coder/code-server.git
synced 2026-05-05 03:55:18 +02:00
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:
@@ -142,7 +142,7 @@
|
||||
"clover"
|
||||
],
|
||||
"coveragePathIgnorePatterns": [
|
||||
"out"
|
||||
"/out"
|
||||
],
|
||||
"coverageThreshold": {
|
||||
"global": {
|
||||
|
||||
Reference in New Issue
Block a user