外观
防止在 test 或 it 块外部出现 expect 语句。辅助函数中的 expect(但不在 test 或 it 块外部)不会触发此规则。
test
it
expect
诸如 expect.hasAssertions() 的语句不会触发此规则,因为这些调用在测试块中时会执行。
expect.hasAssertions()
describe("a test", () => { expect(1).toBe(1); });