feat: set app.enableRendererProcessReuse to true by default (#22336)
* feat: set app.enableRendererProcessReuse to true by default * chore: add context aware info to breaking changes doc * spec: fix nodeIntegration in child windows test for rendererprocessreuse * spec: fix remote listeners in destroyed renderers spec as the error is now async * Update api-browser-window-spec.ts * chore: deprecate affinity * chore: fix docs * spec: handle tests crashing without an exist code * spec: update tests for new rendererprocessreuse default * spec: with renderer process re-use we get to destroy less views
This commit is contained in:
parent
7a91078cc7
commit
7b7def7d1e
10 changed files with 146 additions and 103 deletions
|
@ -1,7 +1,7 @@
|
|||
import { expect } from 'chai'
|
||||
import * as path from 'path'
|
||||
|
||||
import { ipcMain, BrowserWindow, WebPreferences } from 'electron'
|
||||
import { ipcMain, BrowserWindow, WebPreferences, app } from 'electron'
|
||||
import { closeWindow } from './window-helpers'
|
||||
|
||||
describe('BrowserWindow with affinity module', () => {
|
||||
|
@ -10,6 +10,14 @@ describe('BrowserWindow with affinity module', () => {
|
|||
const myAffinityNameUpper = 'MYAFFINITY'
|
||||
const anotherAffinityName = 'anotherAffinity'
|
||||
|
||||
before(() => {
|
||||
app.allowRendererProcessReuse = false
|
||||
})
|
||||
|
||||
after(() => {
|
||||
app.allowRendererProcessReuse = true
|
||||
})
|
||||
|
||||
async function createWindowWithWebPrefs (webPrefs: WebPreferences) {
|
||||
const w = new BrowserWindow({
|
||||
show: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue