#10039 add BrowserView.fromId

This commit is contained in:
Siyuan Liu 2017-07-24 11:32:30 +08:00
parent a43553aa25
commit ae7c1ae741
3 changed files with 20 additions and 1 deletions

View file

@ -100,4 +100,14 @@ describe('BrowserView module', function () {
assert.ok(!view.webContents.getOwnerBrowserWindow())
})
})
describe('BrowserView.fromId()', function () {
it('returns the view with given id', function () {
view = new BrowserView()
w.setBrowserView(view)
assert.notEqual(view.id, null)
let view2 = BrowserView.fromId(view.id)
assert.equal(view2.webContents.id, view.webContents.id)
})
})
})