转到内容

jest/no-restricted-jest-methods 风格

它的作用

限制使用特定的 jestvi 方法。

示例

javascript
jest.useFakeTimers();
it("calls the callback after 1 second via advanceTimersByTime", () => {
  // ...

  jest.advanceTimersByTime(1000);

  // ...
});

test("plays video", () => {
  const spy = jest.spyOn(video, "play");

  // ...
});

引用

在 MIT 许可证下发布。