* Result of a single dispatch+parse cycle. `fatalResult` is set when the dispatch itself failed or * produced a non-ok stop reason, meaning the caller should immediately return a classified TestResult * (the collector's function-call state is not reliable in that case).
| 716 | * (the collector's function-call state is not reliable in that case). |
| 717 | */ |
| 718 | interface _DispatchResult { |
| 719 | collector: SweepCollectorTransmitter; |
| 720 | verboseLogs: string[]; |
| 721 | debugRequestBody: string | undefined; |
| 722 | fatalResult?: Pick<TestResult, 'outcome' | 'errorMessage' | 'errorCategory' | 'httpStatus' | 'verboseLogs'>; |
| 723 | } |
| 724 | |
| 725 | /** |
| 726 | * Build the vendor HTTP request, fetch, parse the response into a collector, and classify top-level outcomes |
nothing calls this directly
no outgoing calls
no test coverage detected