1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Mock ipcRenderer once more

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-03-06 11:54:50 +03:00
parent 66324cb5e6
commit 20f1b56d27

View File

@ -29,6 +29,10 @@ jest.mock("electron", () => ({
on: jest.fn(), on: jest.fn(),
handle: jest.fn(), handle: jest.fn(),
}, },
ipcRenderer: {
on: jest.fn(),
invoke: jest.fn(),
},
})); }));
console = new Console(stdout, stderr); console = new Console(stdout, stderr);