Assert on tab id as well

This commit is contained in:
Kevin Sawicki 2016-06-07 10:38:01 -07:00
parent bf47056561
commit 4f7bde38a9
3 changed files with 5 additions and 1 deletions

View file

@ -929,6 +929,7 @@ describe('<webview> tag', function () {
ipcMain.once('answer', function (event, message) {
assert.equal(message.runtimeId, 'foo')
assert.notEqual(message.tabId, w.webContents.id)
done()
})
})