Add failing webContents.isFocused spec
This commit is contained in:
Родитель
2a67b05fcf
Коммит
cc7fe82b74
|
@ -71,4 +71,12 @@ describe('webContents module', function () {
|
|||
specWebContents.openDevTools()
|
||||
})
|
||||
})
|
||||
|
||||
describe('isFocused() API', function () {
|
||||
it('returns false when the window is hidden', function () {
|
||||
BrowserWindow.getAllWindows().forEach(function (window) {
|
||||
assert.equal(!window.isVisible() && window.webContents.isFocused(), false)
|
||||
})
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Загрузка…
Ссылка в новой задаче