Skip to content

Commit

Permalink
Initialize globalResponse in case of ignored HTTPError
Browse files Browse the repository at this point in the history
  • Loading branch information
ikorolev93 committed Nov 30, 2020
1 parent 1107cc6 commit 6c9c612
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions source/as-promise/index.ts
Expand Up @@ -143,6 +143,7 @@ export default function asPromise<T>(normalizedOptions: NormalizedOptions): Canc

if (error instanceof HTTPError && !options.throwHttpErrors) {
const {response} = error;
globalResponse = response;
resolve(request.options.resolveBodyOnly ? response.body as T : response as unknown as T);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion test/promise.ts
Expand Up @@ -80,7 +80,7 @@ test('promise.json() can be called before a file stream body is open', withServe
await Promise.all(checks);
});

test.failing('promise.json() does not fail when server returns an error', withServer, async (t, server, got) => {
test('promise.json() does not fail when server returns an error', withServer, async (t, server, got) => {
server.get('/', (_request, response) => {
response.statusCode = 400;
response.end('{}');
Expand Down

0 comments on commit 6c9c612

Please sign in to comment.