jest/no-restricted-jest-methods 风格
它的作用
限制使用特定的 jest
和 vi
方法。
示例
javascript
jest.useFakeTimers();
it("calls the callback after 1 second via advanceTimersByTime", () => {
// ...
jest.advanceTimersByTime(1000);
// ...
});
test("plays video", () => {
const spy = jest.spyOn(video, "play");
// ...
});