Mocking console.log with jest
describe("outer", () => {
describe("inner", () => {
let spy: jest.SpyInstance;
beforeAll(() => {
spy = jest.spyOn(global.console, "log").mockImplementation();
});
afterAll(() => {
spy.mockRestore();
});
it("do...
thmsobrmlr.hashnode.dev1 min read