Daha iyi bir yolu olup olmadığını merak devre dışı konsol hataları içindeki bir belirli Jest testi (yani orijinal konsolu geri her testten sonra / 'önce).
İşte şu anki yaklaşımım:
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");
});
});
Aynı şeyi başarmanın daha temiz bir yolu var mı? Kaçınmak isterdim spyOn
ama mockRestore
sadece bununla çalışıyor gibi görünüyor .
Teşekkürler!
setupTestFrameworkScriptFile
lehine kullanımdan kaldırıldısetupFilesAfterEnv
.