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
6 lines
158 B
JavaScript
6 lines
158 B
JavaScript
const { WebContentsView, app } = require('electron');
|
|
app.whenReady().then(function () {
|
|
new WebContentsView({}) // eslint-disable-line
|
|
|
|
app.quit();
|
|
});
|