Интересно, есть ли лучший способ отключить консольные ошибки внутри конкретного теста Jest (т.е. восстановить исходную консоль до/после каждого теста).
Вот мой текущий подход:
describe("Some description", () => {
let consoleSpy;
beforeEach(() => {
if (typeof consoleSpy === "function") {
consoleSpy.mockRestore();
}
});
test("Some test that should not output errors to jest console", () => {
expect.assertions(2);
consoleSpy = jest.spyOn(console, "error").mockImplementation();
// some function that uses console error
expect(someFunction).toBe("X");
expect(consoleSpy).toHaveBeenCalled();
});
test("Test that has console available", () => {
// shows up during jest watch test, just as intended
console.error("test");
});
});
Есть ли более чистый способ сделать то же самое? Я бы хотел избежать spyOn
, но mockRestore
работает только с ним.
Спасибо!