Skip to content

Commit 528a644

Browse files
authored
Update bunfig.json – add coveragePathIgnorePatterns (SchemaStore#4938)
1 parent 6c99832 commit 528a644

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/schemas/json/bunfig.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,14 @@
134134
"type": "boolean",
135135
"default": false
136136
},
137+
"coveragePathIgnorePatterns": {
138+
"$comment": "https://bun.sh/docs/runtime/bunfig#test-coveragepathignorepatterns",
139+
"description": "Exclude specific files or file patterns from coverage reports using glob patterns. Can be a single string pattern or an array of patterns.\nhttps://bun.sh/docs/runtime/bunfig#test-coveragepathignorepatterns",
140+
"oneOf": [
141+
{ "type": "string" },
142+
{ "type": "array", "items": { "type": "string" } }
143+
]
144+
},
137145
"coverageThreshold": {
138146
"$comment": "https://bun.sh/docs/runtime/bunfig#test-coveragethreshold",
139147
"description": "To specify a coverage threshold. By default, no threshold is set. If your test suite does not meet or exceed this threshold, `bun test` will exit with a non-zero exit code to indicate the failure\nhttps://bun.sh/docs/runtime/bunfig#test-coveragethreshold",

0 commit comments

Comments
 (0)