Add initial tabbingIdentifier spec
This commit is contained in:
parent
c8b992fa39
commit
e699e88b4c
1 changed files with 15 additions and 1 deletions
|
@ -692,7 +692,7 @@ describe('BrowserWindow module', function () {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('"title-bar-style" option', function () {
|
describe('"titleBarStyle" option', function () {
|
||||||
if (process.platform !== 'darwin') {
|
if (process.platform !== 'darwin') {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -772,6 +772,20 @@ describe('BrowserWindow module', function () {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
describe('"tabbingIdentifier" option', function () {
|
||||||
|
it('can be set on a window', function () {
|
||||||
|
w.destroy()
|
||||||
|
w = new BrowserWindow({
|
||||||
|
tabbingIdentifier: 'group1'
|
||||||
|
})
|
||||||
|
w.destroy()
|
||||||
|
w = new BrowserWindow({
|
||||||
|
tabbingIdentifier: 'group2',
|
||||||
|
frame: false
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
describe('"web-preferences" option', function () {
|
describe('"web-preferences" option', function () {
|
||||||
afterEach(function () {
|
afterEach(function () {
|
||||||
ipcMain.removeAllListeners('answer')
|
ipcMain.removeAllListeners('answer')
|
||||||
|
|
Loading…
Reference in a new issue