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

Add check for app early exiting

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-10-04 15:26:02 -04:00
parent 0b8868a14e
commit a90b060f1c

View File

@ -33,6 +33,14 @@ async function getMainWindow(app: ElectronApplication, timeout = 50_000): Promis
}
};
const onClose = () => {
cleanup();
reject(new Error("App has unnexpectedly closed"));
};
app.on("close", onClose);
cleanup.push(() => app.off("close", onClose));
app.addListener("window", handler);
cleanup.push(() => app.removeListener("window", handler));
@ -40,7 +48,7 @@ async function getMainWindow(app: ElectronApplication, timeout = 50_000): Promis
if (stdout) {
const onData = (chunk: any) => stdoutBuf += chunk.toString();
stdout.on("data", onData);
cleanup.push(() => stdout.off("data", onData));
}