mirror of https://github.com/electron/electron
20 lines
507 B
JavaScript
20 lines
507 B
JavaScript
const { app, BrowserWindow } = require('electron');
|
|
|
|
let win;
|
|
// This test uses "app.once('ready')" while the |test-menu-null| test uses
|
|
// "app.whenReady()", the 2 APIs have slight difference on timing to cover
|
|
// more cases.
|
|
app.once('ready', function () {
|
|
win = new BrowserWindow({});
|
|
win.setMenuBarVisibility(false);
|
|
|
|
setTimeout(() => {
|
|
if (win.isMenuBarVisible()) {
|
|
console.log('Window has a menu');
|
|
} else {
|
|
console.log('Window has no menu');
|
|
}
|
|
app.quit();
|
|
});
|
|
});
|