From ea8facc9ae740f58a1372235f88a19e694a07d97 Mon Sep 17 00:00:00 2001 From: Matthew Phillips Date: Wed, 3 May 2023 11:08:47 -0400 Subject: [PATCH] localhost it is --- packages/astro/test/ssr-api-route.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/test/ssr-api-route.test.js b/packages/astro/test/ssr-api-route.test.js index d68486b14537..419282b5a389 100644 --- a/packages/astro/test/ssr-api-route.test.js +++ b/packages/astro/test/ssr-api-route.test.js @@ -98,7 +98,7 @@ describe('API routes in SSR', () => { it('Can set multiple headers of the same type', async () => { const response = await new Promise(resolve => { let { port } = devServer.address; - let host = '0.0.0.0'; + let host = 'localhost'; let socket = new net.Socket(); socket.connect(port, host); socket.on('connect', () => {