electron/spec-main/fixtures/crash-cases/quit-on-crashed-event/index.js
Cheng Zhao 80f89a3472
test: disable some tests under ASan which might receive SIGKILL because of OOM (#28156)
* test: running child app under ASan might receive SIGKILL

* test: renderer process of webview might receive SIGKILL under ASan

* test: increase timeout for asan build
2021-03-16 17:02:47 -04:00

16 lines
381 B
JavaScript

const { app, BrowserWindow } = require('electron');
app.once('ready', () => {
const w = new BrowserWindow({
show: false,
webPreferences: {
contextIsolation: false,
nodeIntegration: true
}
});
w.webContents.once('crashed', () => {
app.quit();
});
w.webContents.loadURL('about:blank');
w.webContents.executeJavaScript('process.crash()');
});