jest/prefer-todo 样式
功能
当测试用例为空时,最好将它们标记为 test.todo
,因为这将在汇总输出中突出显示。
为什么不好?
此规则会在没有 'test.todo' 的情况下使用空测试用例时触发警告。
示例
javascript
test("i need to write this test"); // invalid
test("i need to write this test", () => {}); // invalid
test.skip("i need to write this test", () => {}); // invalid
test.todo("i need to write this test");