Skip to content

Commit

Permalink
update bunfig schema (#4423)
Browse files Browse the repository at this point in the history
  • Loading branch information
okineadev authored Feb 6, 2025
1 parent 6506833 commit 3ab8b0a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/schemas/json/bunfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,22 @@
"description": "Whether to skip test files when computing coverage statistics. Default false\nhttps://bun.sh/docs/runtime/bunfig#test-coverageskiptestfiles",
"type": "boolean",
"default": false
},
"coverageReporter": {
"$comment": "https://bun.sh/docs/runtime/bunfig#test-coveragereporter",
"description": "By default, coverage reports will be printed to the console. For persistent code coverage reports in CI environments and for other tools use `lcov`\nhttps://bun.sh/docs/runtime/bunfig#test-coveragereporter",
"type": "array",
"items": {
"type": "string",
"enum": ["text", "lcov"]
},
"default": ["text"]
},
"coverageDir": {
"$comment": "https://bun.sh/docs/runtime/bunfig#test-coveragedir",
"description": "Set path where coverage reports will be saved. Please notice, that it works only for persistent `coverageReporter` like `lcov`\nhttps://bun.sh/docs/runtime/bunfig#test-coveragedir",
"type": "string",
"default": "coverage"
}
}
},
Expand Down

0 comments on commit 3ab8b0a

Please sign in to comment.