(path: string)
| 165 | } |
| 166 | |
| 167 | isTestFilePath(path: string): boolean { |
| 168 | return this._testPathCases.every(testCase => testCase.isMatch(path)); |
| 169 | } |
| 170 | |
| 171 | findMatchingTests( |
| 172 | testPathPatternsExecutor: TestPathPatternsExecutor, |
no test coverage detected