From 2436c9d4a6ac053d030876edd44c6faad9f5913c Mon Sep 17 00:00:00 2001 From: Ming-jun Lu <40516784+mingjunlu@users.noreply.github.com> Date: Thu, 14 Mar 2024 17:44:15 +0800 Subject: [PATCH] Fix a test case which might fail when run locally using IPv4 (#10434) --- packages/astro/test/ssr-api-route.test.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/packages/astro/test/ssr-api-route.test.js b/packages/astro/test/ssr-api-route.test.js index 02d21a068d..c8fdbbfba0 100644 --- a/packages/astro/test/ssr-api-route.test.js +++ b/packages/astro/test/ssr-api-route.test.js @@ -135,8 +135,14 @@ describe('API routes in SSR', () => { assert.equal(data.propsExist, true); assert.deepEqual(data.params, { param: 'any' }); assert.match(data.generator, /^Astro v/); - assert.equal(data.url, 'http://[::1]:4321/blog/context/any'); - assert.equal(data.clientAddress, '::1'); + assert.equal( + [ + 'http://[::1]:4321/blog/context/any', + 'http://127.0.0.1:4321/blog/context/any', + ].includes(data.url), + true + ); + assert.equal(['::1', '127.0.0.1'].includes(data.clientAddress), true); assert.equal(data.site, 'https://mysite.dev/subsite/'); }); });