(path: string)
| 286 | const urlMod = await import("node:url"); |
| 287 | |
| 288 | const addCandidatePath = (path: string) => { |
| 289 | addCandidate(urlMod.pathToFileURL(path).href); |
| 290 | }; |
| 291 | |
| 292 | let pluginFsPath: string | null = null; |
| 293 | if (pluginPath.startsWith("file://")) { |
no test coverage detected