f9a1dc10fe
* fix: quit when chromium is fully started * test: remove hacks on app.quit * chore: RunUntilIdle is unnecessary
13 lines
287 B
JavaScript
13 lines
287 B
JavaScript
const { app } = require('electron')
|
|
|
|
app.on('ready', () => {
|
|
const payload = {
|
|
hasSwitch: app.commandLine.hasSwitch('foobar'),
|
|
getSwitchValue: app.commandLine.getSwitchValue('foobar')
|
|
}
|
|
|
|
process.stdout.write(JSON.stringify(payload))
|
|
process.stdout.end()
|
|
|
|
app.quit()
|
|
})
|