(value: string, cwd: string)
| 129 | } |
| 130 | |
| 131 | function normalizePathValue(value: string, cwd: string): string { |
| 132 | const fileUrlPath = tryFileUrlToPath(value); |
| 133 | if (fileUrlPath) { |
| 134 | return fileUrlPath; |
| 135 | } |
| 136 | |
| 137 | return resolvePathFromCwd(value, cwd); |
| 138 | } |
| 139 | |
| 140 | function resolveRelativeSessionPaths( |
| 141 | defaults: Partial<SessionDefaults>, |
no test coverage detected