()
| 22 | let pauseSessionOpen = false |
| 23 | |
| 24 | function onStepAfter() { |
| 25 | recorder.add('Start next pause session', () => { |
| 26 | // test already finished, nothing to pause |
| 27 | if (!store.currentTest) return |
| 28 | if (!next) return |
| 29 | return pauseSession() |
| 30 | }) |
| 31 | } |
| 32 | |
| 33 | function onTestFinished() { |
| 34 | if (typeof finish === 'function') finish() |
nothing calls this directly
no test coverage detected