fix: chrome://process-internals failing to load (#41476)

fix: chrome://process-internals failing to load
This commit is contained in:
Shelley Vohr 2024-03-07 15:31:16 +01:00 committed by GitHub
parent 62331f5ac1
commit f826506218
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View file

@ -2113,7 +2113,8 @@ describe('chromium features', () => {
'chrome://gpu',
'chrome://media-internals',
'chrome://tracing',
'chrome://webrtc-internals'
'chrome://webrtc-internals',
'chrome://process-internals'
];
for (const url of urls) {
@ -2121,8 +2122,9 @@ describe('chromium features', () => {
it('loads the page successfully', async () => {
const w = new BrowserWindow({ show: false });
await w.loadURL(url);
const host = url.substring('chrome://'.length);
const pageExists = await w.webContents.executeJavaScript(
"window.hasOwnProperty('chrome') && window.chrome.hasOwnProperty('send')"
`window.hasOwnProperty('chrome') && window.location.host === '${host}'`
);
expect(pageExists).to.be.true();
});