(script)
| 15 | } |
| 16 | |
| 17 | function wrapScriptInUrlWorker(script) { |
| 18 | return ` |
| 19 | import { Worker } from 'node:worker_threads'; |
| 20 | new Worker(new URL(${JSON.stringify(convertScriptSourceToDataUrl(script))})); |
| 21 | `; |
| 22 | } |
| 23 | |
| 24 | const onlyWithAmaro = { skip: !process.config.variables.node_use_amaro }; |
| 25 |
no test coverage detected