Add spec for submenu type with no submenu

This commit is contained in:
Kevin Sawicki 2016-06-21 16:02:15 -07:00
Родитель 93cbe6539f
Коммит 51b8c0292c
1 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -372,4 +372,17 @@ describe('menu module', function () {
}, /Unknown menu item type: not-a-type/)
})
})
describe('MenuItem with submenu type and missing submenu', function () {
it('throws an exception', function () {
assert.throws(function () {
var menu = Menu.buildFromTemplate([
{
label: 'text',
type: 'submenu'
}
])
}, /Invalid submenu/)
})
})
})