boolean
false
--hideSkippedTests
不展示跳过测试的日志。
import { defineConfig } from '@rstest/core'; export default defineConfig({ hideSkippedTests: true, });
默认情况下,在你使用 verbose 报告器时,Rstest 会显示所有测试用例的日志。
✓ test/index.test.ts (2) 1ms ✓ Index > should add two numbers correctly (0ms) - Index > should test source code correctly (1ms) Test Files 1 passed Tests 1 passed | 1 skipped (2) Duration 93ms (build 50ms, tests 43ms)
当你设置 hideSkippedTests 为 true 时,Rstest 会在测试完成后隐藏所有跳过的测试用例的日志。
hideSkippedTests
true
此时输出如下:
✓ test/index.test.ts (2) 1ms ✓ Index > should add two numbers correctly (0ms) Test Files 1 passed Tests 1 passed | 1 skipped (2) Duration 93ms (build 50ms, tests 43ms)