Bun 的测试运行器通过 --coverage
标志支持内置代码覆盖率报告。
bun test --coverage
test.test.ts:
✓ math > add [0.71ms]
✓ math > multiply [0.03ms]
✓ random [0.13ms]
-------------|---------|---------|-------------------
File | % Funcs | % Lines | Uncovered Line #s
-------------|---------|---------|-------------------
All files | 66.67 | 77.78 |
math.ts | 50.00 | 66.67 |
random.ts | 50.00 | 66.67 |
-------------|---------|---------|-------------------
3 pass
0 fail
3 expect() calls
要设置最低覆盖率阈值,请将以下行添加到 bunfig.toml
中。这要求 90% 的代码库由测试覆盖。
[test]
# to require 90% line-level and function-level coverage
coverageThreshold = 0.9
如果你的测试套件未达到此阈值,bun test
将退出,并带有非零退出代码以表示失败。
bun test --coverage
<test output>
echo $?
1 # this is the exit code of the previous command
可以为行级和函数级覆盖率设置不同的阈值。
[test]
# to set different thresholds for lines and functions
coverageThreshold = { line = 0.5, function = 0.7 }
请参阅 文档 > 测试运行器 > 覆盖率,了解 Bun 中代码覆盖率报告的完整文档。