(passedObject = {})
| 54 | * @param {Object<string, *>} [passedObject] |
| 55 | */ |
| 56 | const pause = function (passedObject = {}) { |
| 57 | if (store.dryRun) return |
| 58 | |
| 59 | next = false |
| 60 | registerPauseListeners() |
| 61 | |
| 62 | recorder.add('Start new session', () => pauseSession(passedObject)) |
| 63 | } |
| 64 | |
| 65 | function pauseSession(passedObject = {}) { |
| 66 | registeredVariables = passedObject |
no test coverage detected