mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-04-28 11:59:29 +00:00
The original bunfig.toml used `line` and `function` (singular) which Bun silently ignores. The correct field names are `lines` and `functions` (plural). Changes: - Fix field names: line→lines, function→functions - Set thresholds: lines=0.35 (floor: digitalocean.ts 38.5%), functions=0.5 (floor: preload.ts 50%) - Add coverageSkipTestFiles=true - Keep --coverage in CI (bunfig thresholds enforce exit code on failure) Co-authored-by: Claude <claude@anthropic.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: L <6723574+louisgv@users.noreply.github.com>
4 lines
144 B
TOML
4 lines
144 B
TOML
[test]
|
|
preload = ["./packages/cli/src/__tests__/preload.ts"]
|
|
coverageSkipTestFiles = true
|
|
coverageThreshold = { lines = 0.35, functions = 0.5 }
|