()
| 169 | |
| 170 | // ---- Step group management ---- |
| 171 | export function closeGroup() { |
| 172 | if (S.currentGroup) { |
| 173 | S.currentGroup.querySelector('.step-count').textContent = S.currentGroupCount + ' steps'; |
| 174 | S.currentGroup = null; |
| 175 | S.currentGroupCount = 0; |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | function ensureGroup() { |
| 180 | if (!S.currentGroup) { |
no outgoing calls
no test coverage detected