mirror of
https://git.freebsd.org/ports.git
synced 2025-07-16 08:49:15 -04:00
Changelog: https://github.com/electron/electron/releases/tag/v25.9.3 Reported by: GitHub (watch releases)
11 lines
640 B
TypeScript
11 lines
640 B
TypeScript
--- electron/spec/api-utility-process-spec.ts.orig 2023-10-24 20:32:51 UTC
|
|
+++ electron/spec/api-utility-process-spec.ts
|
|
@@ -383,7 +383,7 @@ describe('utilityProcess module', () => {
|
|
await closeWindow(w);
|
|
});
|
|
|
|
- ifit(process.platform === 'linux')('allows executing a setuid binary with child_process', async () => {
|
|
+ ifit(process.platform === 'linux' || process.platform === 'freebsd')('allows executing a setuid binary with child_process', async () => {
|
|
const child = utilityProcess.fork(path.join(fixturesPath, 'suid.js'));
|
|
await once(child, 'spawn');
|
|
const [data] = await once(child, 'message');
|