0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

Fix a test case which might fail when run locally using IPv4 (#10434)

This commit is contained in:
Ming-jun Lu 2024-03-14 17:44:15 +08:00 committed by GitHub
parent ee07e62942
commit 2436c9d4a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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/');
});
});