mirror of
https://github.com/lensapp/lens.git
synced 2024-11-10 10:36:25 +03: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.fail = ((error = "Test failed without explicit error") => {
|
||||
console.error(error);
|
||||
}) as any;
|
||||
|
||||
process.on("unhandledRejection", (err: any) => {
|
||||
fail(err);
|
||||
global.fail(err);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user