blob: c84d05a2515e6bc165e881e42c77f9319b2def54 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- electron/spec/api-web-frame-main-spec.ts.orig 2025-09-02 20:56:04 UTC
+++ electron/spec/api-web-frame-main-spec.ts
@@ -317,7 +317,7 @@ describe('webFrameMain module', () => {
afterEach(closeAllWindows);
// TODO(jkleinsc) fix this flaky test on linux
- ifit(process.platform !== 'linux')('throws upon accessing properties when disposed', async () => {
+ ifit(process.platform !== 'linux' && process.platform !== 'freebsd')('throws upon accessing properties when disposed', async () => {
await w.loadFile(path.join(subframesPath, 'frame-with-frame-container.html'));
const { mainFrame } = w.webContents;
w.destroy();
|