()
| 131 | } |
| 132 | |
| 133 | getFailedFilepaths(): string[] { |
| 134 | return this.getFiles() |
| 135 | .filter(i => i.result?.state === 'fail') |
| 136 | .map(i => i.filepath) |
| 137 | } |
| 138 | |
| 139 | collectPaths(paths: string[] = []): void { |
| 140 | paths.forEach((path) => { |
no test coverage detected