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:
parent
ee07e62942
commit
2436c9d4a6
1 changed files with 8 additions and 2 deletions
|
@ -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/');
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue