(rootDir: string)
| 170 | } |
| 171 | |
| 172 | async function createTestConfig(rootDir: string): Promise<Config> { |
| 173 | const config = new Config(rootDir); |
| 174 | await fsPromises.mkdir(config.srcDir, { recursive: true }); |
| 175 | return config; |
| 176 | } |
| 177 | |
| 178 | async function createTestProject( |
| 179 | rootDir: string, |
no outgoing calls
no test coverage detected