Aku ingin tahu apakah ada cara yang lebih baik untuk kesalahan konsol menonaktifkan dalam sebuah tes Jest tertentu (yaitu, mengembalikan konsol asli sebelum / sesudah setiap tes).
Inilah pendekatan saya saat ini:
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");
});
});
Adakah cara yang lebih bersih untuk mencapai hal yang sama? Saya ingin menghindari spyOn
, tetapi mockRestore
sepertinya hanya bekerja dengannya .
Terima kasih!
setupTestFrameworkScriptFile
tidak digunakan lagi karenasetupFilesAfterEnv
.