(flagName)
| 445 | } |
| 446 | |
| 447 | function mapPatternFlagToRegExArray(flagName) { |
| 448 | const patterns = getOptionValue(flagName); |
| 449 | |
| 450 | if (patterns?.length > 0) { |
| 451 | return ArrayPrototypeMap(patterns, (re) => convertStringToRegExp(re, flagName)); |
| 452 | } |
| 453 | |
| 454 | return null; |
| 455 | } |
| 456 | |
| 457 | function countCompletedTest(test, harness = test.root.harness) { |
| 458 | if (test.nesting === 0) { |
no test coverage detected
searching dependent graphs…