Just realized that the tests don't pass after my PR. This fixes that :)
This commit is contained in:
Feross Aboukhadijeh 2016-07-25 17:27:45 -07:00
Родитель d6a7ced32c
Коммит 9bc144c880
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -399,7 +399,7 @@ describe('menu module', function () {
describe('MenuItem role', function () {
it('includes a default label and accelerator', function () {
var item = new MenuItem({role: 'close'})
assert.equal(item.label, 'Close')
assert.equal(item.label, process.platform === 'darwin' ? 'Close Window' : 'Close')
assert.equal(item.accelerator, undefined)
assert.equal(item.getDefaultRoleAccelerator(), 'CommandOrControl+W')