跳到内容

jest/no-standalone-expect 正确性

它能做什么

防止在 testit 块外部出现 expect 语句。辅助函数中的 expect(但不在 testit 块外部)不会触发此规则。

诸如 expect.hasAssertions() 的语句不会触发此规则,因为这些调用在测试块中时会执行。

示例

JavaScript
describe("a test", () => {
  expect(1).toBe(1);
});

引用

在 MIT 许可下发布。