(step, patterns)
| 397 | } |
| 398 | |
| 399 | function isStepIgnored(step, patterns) { |
| 400 | if (!patterns || !patterns.length) return false |
| 401 | for (const pattern of patterns) { |
| 402 | if (step.title && step.title.match(pattern)) return true |
| 403 | } |
| 404 | return false |
| 405 | } |
| 406 | |
| 407 | function scanRecordDirs(reportDir) { |
| 408 | const out = {} |