(path: string, url: string)
| 35 | |
| 36 | const urlResponses = new Map<string, string>(); |
| 37 | export function stubChromeRuntimeGetURL(path: string, url: string): void { |
| 38 | urlResponses.set(path, url); |
| 39 | (chrome.runtime as any).getURL = (path: string) => { |
| 40 | return urlResponses.get(path); |
| 41 | }; |
| 42 | } |
no test coverage detected