(str: string)
| 19 | import {expectArraysClose} from './test_util'; |
| 20 | |
| 21 | const str2workerURL = (str: string): string => { |
| 22 | const blob = |
| 23 | new Blob([str], {type: 'application/javascript'}); |
| 24 | return URL.createObjectURL(blob); |
| 25 | }; |
| 26 | |
| 27 | // The source code of a web worker. |
| 28 | const workerTest = ` |
no outgoing calls
no test coverage detected
searching dependent graphs…