* Glob test files in every project and create a TestSpecification for each file and pool. * @param filters String filters to match the test files.
(filters: string[] = [])
| 573 | * @param filters String filters to match the test files. |
| 574 | */ |
| 575 | public async globTestSpecifications(filters: string[] = []): Promise<TestSpecification[]> { |
| 576 | return this.specifications.globTestSpecifications(filters) |
| 577 | } |
| 578 | |
| 579 | private async initCoverageProvider(): Promise<CoverageProvider | null | undefined> { |
| 580 | if (this._coverageProvider != null) { |
no outgoing calls
no test coverage detected