(step)
| 436 | } |
| 437 | |
| 438 | function isStepIgnored(step) { |
| 439 | if (!config.ignoreSteps) return false |
| 440 | if (!step.title) return false |
| 441 | for (const pattern of config.ignoreSteps || []) { |
| 442 | if (step.title.match(pattern)) return true |
| 443 | } |
| 444 | return false |
| 445 | } |
| 446 | |
| 447 | function generateStepPrefix(step, index) { |
| 448 | const stepName = step.toString() |
no outgoing calls
no test coverage detected