(category: string, patternNames: string[])
| 38 | } |
| 39 | |
| 40 | export function isComplementaryPatternCategory(category: string, patternNames: string[]): boolean { |
| 41 | const set = complementaryPairs.get(category); |
| 42 | if (!set || patternNames.length < 2) return false; |
| 43 | return patternNames.every((name) => set.has(normalizePatternName(name))); |
| 44 | } |
| 45 | |
| 46 | export function shouldSkipLegacyTestingFrameworkCategory( |
| 47 | category: string, |
no test coverage detected