跳到内容

jest/expect-expect 正确性

作用

此规则会在测试中未调用 expect 时触发,确保在测试中至少调用一次 expect

它为什么不好?

人们可能会忘记添加断言。

示例

javascript
it("should be a test", () => {
  console.log("no assertion");
});
test("should assert something", () => {});

此规则与 eslint-plugin-vitest 兼容,要使用它,请将以下配置添加到您的 .eslintrc.json

json
{
  "rules": {
    "vitest/expect-expect": "error"
  }
}

参考

根据 MIT 许可证发布。