(relativePath: string)
| 45 | export async function loadTestConfig(configPath: string): Promise<CircularDependenciesTestConfig> { |
| 46 | const configBaseDir = dirname(configPath); |
| 47 | const resolveRelativePath = (relativePath: string) => resolve(configBaseDir, relativePath); |
| 48 | |
| 49 | try { |
| 50 | let config: CircularDependenciesTestConfig; |
no test coverage detected