mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Make jest not crash totally when encountering non handled exception (#5634)
Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
parent
6451df1f17
commit
fa32aa1b8e
@ -24,6 +24,10 @@ globalThis.__non_webpack_require__ = jest.fn();
|
|||||||
|
|
||||||
global.setImmediate = global.setImmediate ?? (<TArgs extends any[]>(callback: (...args: TArgs) => void, ...args: TArgs) => setTimeout(() => callback(...args), 0));
|
global.setImmediate = global.setImmediate ?? (<TArgs extends any[]>(callback: (...args: TArgs) => void, ...args: TArgs) => setTimeout(() => callback(...args), 0));
|
||||||
|
|
||||||
|
global.fail = ((error = "Test failed without explicit error") => {
|
||||||
|
console.error(error);
|
||||||
|
}) as any;
|
||||||
|
|
||||||
process.on("unhandledRejection", (err: any) => {
|
process.on("unhandledRejection", (err: any) => {
|
||||||
fail(err);
|
global.fail(err);
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user