You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bun currently has an option to configure coverage thresholds in bunfig.toml, but no way to do so from the command-line (that I can find in the documentation).
What is the feature you are proposing to solve the problem?
What is the problem this feature would solve?
Bun currently has an option to configure coverage thresholds in
bunfig.toml
, but no way to do so from the command-line (that I can find in the documentation).What is the feature you are proposing to solve the problem?
Bun could add CLI args similar to c8's CLI.
--lines [0-1]
: Same ascoverageThreshold = { lines = [0-1] }
--functions [0-100]
: Same ascoverageThreshold = { functions = [0-1] }
--all
: Same ascoverageThreshold = 1
What alternatives have you considered?
Continue as-is and keep
bunfig.toml
as a single source of truth for coverage configuration.The text was updated successfully, but these errors were encountered: