| 45 | Date: Date, |
| 46 | setTimeout: (fn, ms) => fn(), |
| 47 | URL: class URL { |
| 48 | constructor(url, base) { |
| 49 | this.href = url; |
| 50 | this.searchParams = new Map(); |
| 51 | } |
| 52 | toString() { return this.href; } |
| 53 | }, |
| 54 | }; |
| 55 | |
| 56 | global.document = { |
nothing calls this directly
no outgoing calls
no test coverage detected