Skip to content

Commit cbc8902

Browse files
committed
Fix invalid afterResponse return check
1 parent 15c30ee commit cbc8902

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

source/as-promise/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export default function asPromise<T>(firstRequest: Request): CancelableRequest<T
9898
throw new RetryError(request);
9999
});
100100

101-
if (!(is.object(response) && is.number(response.statusCode) && response.body)) {
101+
if (!(is.object(response) && is.number(response.statusCode) && !is.nullOrUndefined(response.body))) {
102102
throw new TypeError('The `afterResponse` hook returned an invalid value');
103103
}
104104
}

test/hooks.ts

+16
Original file line numberDiff line numberDiff line change
@@ -1351,3 +1351,19 @@ test('can retry without an agent', withServer, async (t, server, got) => {
13511351
t.is(response.retryCount, 2);
13521352
t.is(counter, 1);
13531353
});
1354+
1355+
test('does not throw on empty body when running afterResponse hooks', withServer, async (t, server, got) => {
1356+
server.get('/', (_request, response) => {
1357+
response.end();
1358+
});
1359+
1360+
await t.notThrowsAsync(got('', {
1361+
hooks: {
1362+
afterResponse: [
1363+
response => {
1364+
return response;
1365+
}
1366+
]
1367+
}
1368+
}));
1369+
});

0 commit comments

Comments
 (0)