1234567891011121314151617181920212223242526272829303132 |
- import { expect } from 'chai'
- import { BrowserWindow, WebContents } from 'electron'
- import { emittedOnce } from './events-helpers';
- export const closeWindow = async (
- window: BrowserWindow | null = null,
- { assertNotWindows } = { assertNotWindows: true }
- ) => {
- if (window && !window.isDestroyed()) {
- const isClosed = emittedOnce(window, 'closed')
- window.setClosable(true)
- window.close()
- await isClosed
- }
- if (assertNotWindows) {
- const windows = BrowserWindow.getAllWindows()
- for (const win of windows) {
- const closePromise = emittedOnce(win, 'closed')
- win.close()
- await closePromise
- }
- expect(windows).to.have.lengthOf(0)
- }
- }
- exports.waitForWebContentsToLoad = async (webContents: WebContents) => {
- const didFinishLoadPromise = emittedOnce(webContents, 'did-finish-load')
- if (webContents.isLoadingMainFrame()) {
- await didFinishLoadPromise
- }
- }
|