(preflight: TestPreflightResult)
| 487 | } |
| 488 | |
| 489 | export function collectResolvedTestSelectors(preflight: TestPreflightResult): string[] { |
| 490 | return preflight.targets |
| 491 | .flatMap((target) => target.files.flatMap((file) => file.tests.map((test) => test.displayName))) |
| 492 | .sort(); |
| 493 | } |
| 494 | |
| 495 | export function formatTestSelectionSummary(preflight: TestPreflightResult): string | undefined { |
| 496 | if ( |
no outgoing calls
no test coverage detected