(captureTo: string)
| 1510 | } |
| 1511 | |
| 1512 | private async formatFilePath(captureTo: string) { |
| 1513 | const formattedCaptureTo: string = await this.formatter.formatFileName( |
| 1514 | captureTo, |
| 1515 | this.choice.name, |
| 1516 | ); |
| 1517 | |
| 1518 | return this.normalizeCaptureFilePath(formattedCaptureTo); |
| 1519 | } |
| 1520 | |
| 1521 | private normalizeCaptureFilePath(path: string): string { |
| 1522 | const normalizedPath = normalizeGeneratedFilePath( |
no test coverage detected