(t *testing.T, handler http.Handler, id string)
| 929 | } |
| 930 | |
| 931 | func getOutputWithWait(t *testing.T, handler http.Handler, id string) *httptest.ResponseRecorder { |
| 932 | t.Helper() |
| 933 | ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitLong) |
| 934 | defer cancel() |
| 935 | return getOutputWithWaitCtx(ctx, t, handler, id) |
| 936 | } |
| 937 | |
| 938 | func getOutputWithWaitCtx(ctx context.Context, t *testing.T, handler http.Handler, id string) *httptest.ResponseRecorder { |
| 939 | t.Helper() |
no test coverage detected