Check menu.popup options are an object (#12325)
* check menu.popup options are an object * Add a spec for menu.popup options check * remove stray .only
This commit is contained in:
parent
792837bd71
commit
31d688ad3d
2 changed files with 9 additions and 0 deletions
|
@ -309,6 +309,12 @@ describe('Menu module', () => {
|
|||
return closeWindow(w).then(() => { w = null })
|
||||
})
|
||||
|
||||
it('throws an error if options is not an object', () => {
|
||||
assert.throws(() => {
|
||||
menu.popup()
|
||||
}, /Options must be an object/)
|
||||
})
|
||||
|
||||
it('should emit menu-will-show event', (done) => {
|
||||
menu.on('menu-will-show', () => { done() })
|
||||
menu.popup({window: w})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue