--- electron/spec/api-net-log-spec.ts.orig 2026-05-07 20:19:20 UTC +++ electron/spec/api-net-log-spec.ts @@ -125,7 +125,7 @@ describe('netLog module', () => { ).to.be.true('uuid present in dump'); }); - ifit(process.platform !== 'linux')( + ifit(process.platform !== 'linux' && process.platform !== 'freebsd')( 'should begin and end logging automatically when --log-net-log is passed', async () => { const appProcess = ChildProcess.spawn(process.execPath, [appPath], { @@ -140,7 +140,7 @@ describe('netLog module', () => { } ); - ifit(process.platform !== 'linux')( + ifit(process.platform !== 'linux' && process.platform !== 'freebsd')( 'should begin and end logging automatically when --log-net-log is passed, and behave correctly when .startLogging() and .stopLogging() is called', async () => { const appProcess = ChildProcess.spawn(process.execPath, [appPath], { @@ -158,7 +158,7 @@ describe('netLog module', () => { } ); - ifit(process.platform !== 'linux')( + ifit(process.platform !== 'linux' && process.platform !== 'freebsd')( 'should end logging automatically when only .startLogging() is called', async () => { const appProcess = ChildProcess.spawn(process.execPath, [appPath], {