()
| 46 | await new Promise<void>((resolve) => { |
| 47 | let done = false; |
| 48 | const finish = () => { if (!done) { done = true; resolve(); } }; |
| 49 | try { |
| 50 | const child = spawn('osascript', ['-e', script], { stdio: 'ignore' }); |
| 51 | child.on('error', (e: any) => { |
no outgoing calls
no test coverage detected