Record state changes from the client and emit the matching snapshot.
()
| 1402 | |
| 1403 | /** Record state changes from the client and emit the matching snapshot. */ |
| 1404 | recordResultChange(): void { |
| 1405 | this.updateActiveRun({ |
| 1406 | result: this.getCoreState().result, |
| 1407 | preview: this.createPreview(this.getCoreState().result), |
| 1408 | clearError: true, |
| 1409 | }) |
| 1410 | this.emitState() |
| 1411 | } |
| 1412 | |
| 1413 | recordLoadingChange(): void { |
| 1414 | this.updateActiveRun({ isLoading: this.getCoreState().isLoading }) |
no test coverage detected