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 = { lines = 0.5, functions = 0.7 }
有关 Bun 中代码覆盖率报告的完整文档,请参阅文档 > 测试运行器 > 覆盖率。