(script)
| 11 | `; |
| 12 | |
| 13 | function convertScriptSourceToDataUrl(script) { |
| 14 | return new URL(`data:text/javascript,${encodeURIComponent(script)}`); |
| 15 | } |
| 16 | |
| 17 | describe('Worker threads should not be able to access internal modules', () => { |
| 18 | before(() => tmpdir.refresh()); |
no outgoing calls
no test coverage detected
searching dependent graphs…