2018-09-13 16:10:51 +00:00
|
|
|
const { expect } = require('chai')
|
2019-04-16 20:08:11 +00:00
|
|
|
const { remote } = require('electron')
|
|
|
|
const { BrowserWindow } = remote
|
2016-11-29 19:06:22 +00:00
|
|
|
|
2018-09-13 16:10:51 +00:00
|
|
|
const { emittedOnce } = require('./events-helpers')
|
2018-06-21 14:43:15 +00:00
|
|
|
|
|
|
|
exports.closeWindow = async (window = null,
|
2018-09-13 16:10:51 +00:00
|
|
|
{ assertSingleWindow } = { assertSingleWindow: true }) => {
|
2018-06-21 14:43:15 +00:00
|
|
|
const windowExists = (window !== null) && !window.isDestroyed()
|
|
|
|
if (windowExists) {
|
|
|
|
const isClosed = emittedOnce(window, 'closed')
|
|
|
|
window.setClosable(true)
|
|
|
|
window.close()
|
|
|
|
await isClosed
|
|
|
|
}
|
|
|
|
|
|
|
|
if (assertSingleWindow) {
|
2019-04-16 20:08:11 +00:00
|
|
|
// Although we want to assert that no windows were left handing around
|
|
|
|
// we also want to clean up the left over windows so that no future
|
|
|
|
// tests fail as a side effect
|
|
|
|
const currentId = remote.getCurrentWindow().id
|
|
|
|
const windows = BrowserWindow.getAllWindows()
|
|
|
|
for (const win of windows) {
|
|
|
|
if (win.id !== currentId) {
|
|
|
|
const closePromise = emittedOnce(win, 'closed')
|
|
|
|
win.close()
|
|
|
|
await closePromise
|
|
|
|
}
|
|
|
|
}
|
|
|
|
expect(windows).to.have.lengthOf(1)
|
2016-08-03 19:47:53 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-08 20:26:03 +00:00
|
|
|
|
|
|
|
exports.waitForWebContentsToLoad = async (webContents) => {
|
|
|
|
const didFinishLoadPromise = emittedOnce(webContents, 'did-finish-load')
|
|
|
|
if (webContents.isLoadingMainFrame()) {
|
|
|
|
await didFinishLoadPromise
|
|
|
|
}
|
|
|
|
}
|