(code: number | null, signal: NodeJS.Signals | null)
| 118 | } |
| 119 | |
| 120 | protected handleExit(code: number | null, signal: NodeJS.Signals | null) { |
| 121 | if (code && !this.isShuttingDown) |
| 122 | this.handleUncleanExit(); |
| 123 | |
| 124 | super.handleExit(code, signal); |
| 125 | } |
| 126 | |
| 127 | private handleUncleanExit() { |
| 128 | if (this.runIfNoDevices) { |
no test coverage detected