Skip to content

Commit 1cefe8b

Browse files
Allow specifying undefined for options (#2258)
1 parent 0337311 commit 1cefe8b

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

source/core/options.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -1078,7 +1078,13 @@ export default class Options {
10781078
}
10791079

10801080
// @ts-expect-error Type 'unknown' is not assignable to type 'never'.
1081-
this[key as keyof Options] = options[key as keyof Options];
1081+
const value = options[key as keyof Options];
1082+
if (value === undefined) {
1083+
continue;
1084+
}
1085+
1086+
// @ts-expect-error Type 'unknown' is not assignable to type 'never'.
1087+
this[key as keyof Options] = value;
10821088

10831089
push = true;
10841090
}

test/agent.ts

+14
Original file line numberDiff line numberDiff line change
@@ -205,3 +205,17 @@ test('no socket hung up regression', withServer, async (t, server, got) => {
205205

206206
agent.destroy();
207207
});
208+
209+
test('accept undefined agent', withServer, async (t, server, got) => {
210+
server.get('/', (_request, response) => {
211+
response.end('ok');
212+
});
213+
214+
const undefinedAgent = undefined;
215+
t.truthy((await got({
216+
https: {
217+
rejectUnauthorized: false,
218+
},
219+
agent: undefinedAgent,
220+
})).body);
221+
});

0 commit comments

Comments
 (0)