jest/no-restricted-jest-methods Style ​
What it does ​
Restrict the use of specific jest
and vi
methods.
Example ​
javascript
jest.useFakeTimers();
it("calls the callback after 1 second via advanceTimersByTime", () => {
// ...
jest.advanceTimersByTime(1000);
// ...
});
test("plays video", () => {
const spy = jest.spyOn(video, "play");
// ...
});