f9a1dc10fe
* fix: quit when chromium is fully started * test: remove hacks on app.quit * chore: RunUntilIdle is unnecessary
6 lines
121 B
JavaScript
6 lines
121 B
JavaScript
const { app, webContents } = require('electron')
|
|
app.on('ready', function () {
|
|
webContents.create({})
|
|
|
|
app.quit()
|
|
})
|