(suitePath: string)
| 64 | sortBy(projectFolders, (f) => -1 * f.length); |
| 65 | |
| 66 | function closestProjectFolder(suitePath: string) { |
| 67 | return projectFolders.find((f) => isWithinPath(suitePath, f)); |
| 68 | } |
| 69 | |
| 70 | const projectsWithTests: Array<{ projectFolder: string, name: string, relativeTestPaths: string[] }> = []; |
| 71 | function addTestItemsForProject(projectFolder: string, integrationTests: boolean) { |
nothing calls this directly
no test coverage detected