oyvindgrimen
Results
1
comments of
oyvindgrimen
My workaround: `const mockConsole = jest.spyOn(console, "error").mockImplementation(() => null);` `return expectSaga(someSagaThatThrows)` `.throws(Error)` `.run()` `.finally(() => mockConsole.mockRestore());`