👷 Hence, better testing

This commit is contained in:
Felix Rieseberg 2017-12-11 13:54:43 -08:00
parent 5b7f7c8a1a
commit ace558f54a

View file

@ -283,19 +283,44 @@ describe('Menu module', () => {
}) })
it('returns immediately', () => { it('returns immediately', () => {
menu.popup(w, {x: 100, y: 100}) const { browserWindow, x, y } = menu.popup(w, {x: 100, y: 100})
assert.equal(browserWindow, w)
assert.equal(x, 100)
assert.equal(y, 100)
menu.closePopup(w) menu.closePopup(w)
}) })
it('works without a given BrowserWindow and options', () => { it('works without a given BrowserWindow and options', () => {
menu.popup({x: 100, y: 100}) const { browserWindow, x, y } = menu.popup({x: 100, y: 100})
assert.equal(browserWindow.constructor.name, 'BrowserWindow')
assert.equal(x, 100)
assert.equal(y, 100)
menu.closePopup() menu.closePopup()
}) })
it('works without a given BrowserWindow', () => { it('works without a given BrowserWindow', () => {
menu.popup(100, 100) const { browserWindow, x, y } = menu.popup(100, 100)
assert.equal(browserWindow.constructor.name, 'BrowserWindow')
assert.equal(x, 100)
assert.equal(y, 100)
menu.closePopup() menu.closePopup()
}) })
it('works with a given BrowserWindow and no options', () => {
const { browserWindow, x, y } = menu.popup(w, 100, 100)
assert.equal(browserWindow, w)
assert.equal(x, 100)
assert.equal(y, 100)
menu.closePopup(w)
})
}) })
describe('Menu.setApplicationMenu', () => { describe('Menu.setApplicationMenu', () => {