(blob)
| 46 | Object.assign(URL, { |
| 47 | blobCache: {}, |
| 48 | createObjectURL(blob) { |
| 49 | const blobUrl = `blob:${Math.random()}`; |
| 50 | URL.blobCache[blobUrl] = blob; |
| 51 | return blobUrl; |
| 52 | }, |
| 53 | }); |
| 54 | Object.assign(global, require('@/common/safe-globals-shared')); |
| 55 | Object.assign(global, require('@/common/safe-globals')); |
no outgoing calls
no test coverage detected