Mi chiedo se ci sia un modo migliore per disabilitare gli errori della console all'interno di uno specifico test Jest (cioè, ripristinare la console originale prima / dopo ogni test).
Ecco il mio approccio attuale:
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");
});
});
Esiste un modo più pulito per ottenere la stessa cosa? Vorrei evitare spyOn
, ma mockRestore
sembra funzionare solo con esso .
Grazie!
setupTestFrameworkScriptFile
è deprecato a favore disetupFilesAfterEnv
.