test: more logging in node inspector test (#23746)

This commit is contained in:
Cheng Zhao 2020-05-26 10:20:16 +09:00 committed by GitHub
parent 2029ff1903
commit 0dabd5e8c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,6 @@
const { app } = require('electron');
process.on('message', () => app.quit());
process.on('message', () => {
console.log('Notified to quit');
app.quit();
});