Add failing spec for no specified storage keys

This commit is contained in:
Kevin Sawicki 2016-06-28 13:01:51 -07:00
parent 6081cba15d
commit 2fe83bc5f0
2 changed files with 17 additions and 5 deletions

View file

@ -1025,7 +1025,7 @@ describe('browser-window module', function () {
}, /Unexpected token }/)
})
describe('when the devtools is docked', function () {
describe.only('when the devtools is docked', function () {
it('creates the extension', function (done) {
w.webContents.openDevTools({mode: 'bottom'})
@ -1033,7 +1033,10 @@ describe('browser-window module', function () {
assert.equal(message.runtimeId, 'foo')
assert.equal(message.tabId, w.webContents.id)
assert.equal(message.i18nString, 'foo - bar (baz)')
assert.deepEqual(message.storageItems, {foo: 'bar'})
assert.deepEqual(message.storageItems, {
local: {hello: 'world'},
sync: {foo: 'bar'}
})
done()
})
})