()
| 388 | let stepRun: string[] = []; |
| 389 | |
| 390 | const flushStepRun = (): void => { |
| 391 | if (stepRun.length === 0) return; |
| 392 | normalized.push(...stepRun.sort((left, right) => left.localeCompare(right))); |
| 393 | stepRun = []; |
| 394 | }; |
| 395 | |
| 396 | for (const item of items) { |
| 397 | if (typeof item === 'string' && item.startsWith('[<STEP>] ')) { |
no test coverage detected