MCPcopy Index your code
hub / github.com/codeceptjs/CodeceptJS / isStepIgnored

Function isStepIgnored

lib/plugin/aiTrace.js:438–445  ·  view source on GitHub ↗
(step)

Source from the content-addressed store, hash-verified

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()

Callers 2

aiTrace.jsFile · 0.70
persistStepFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected