(options: RemoteConfigProfileOptions)
| 106 | } |
| 107 | |
| 108 | export function resolveRemoteConfigPath(options: RemoteConfigProfileOptions): string { |
| 109 | const env = options.env ?? process.env; |
| 110 | return resolveUserPath(options.configPath, { cwd: options.cwd, env }); |
| 111 | } |
| 112 | |
| 113 | export function resolveRemoteConfigProfile( |
| 114 | options: RemoteConfigProfileOptions, |
no test coverage detected