This commit is contained in:
Raymond Zhao 2023-11-09 10:13:56 -08:00 коммит произвёл GitHub
Родитель 1d29ee6e11
Коммит 58e0b4b727
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -117,7 +117,7 @@ test('proxy https to https', async t => {
const serverAddress = server.address() as AddressInfo;
const response = await xhr({ url: `https://localhost:${serverAddress.port}` });
const response = await xhr({ url: `https://${serverAddress.address}:${serverAddress.port}` });
t.is(response.responseText, 'ok');
t.is(response.status, 200);