mirror of
https://git.freebsd.org/ports.git
synced 2025-06-20 04:00:41 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
11 lines
640 B
TypeScript
11 lines
640 B
TypeScript
--- electron/spec/api-utility-process-spec.ts.orig 2024-01-23 19:02:02 UTC
|
|
+++ electron/spec/api-utility-process-spec.ts
|
|
@@ -400,7 +400,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');
|