We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d29ee6 commit 58e0b4bCopy full SHA for 58e0b4b
1 file changed
src/test/test.ts
@@ -117,7 +117,7 @@ test('proxy https to https', async t => {
117
118
const serverAddress = server.address() as AddressInfo;
119
120
- const response = await xhr({ url: `https://localhost:${serverAddress.port}` });
+ const response = await xhr({ url: `https://${serverAddress.address}:${serverAddress.port}` });
121
122
t.is(response.responseText, 'ok');
123
t.is(response.status, 200);
0 commit comments