80f89a3472
* 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
16 lines
381 B
JavaScript
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()');
|
|
});
|