Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico authored and astrobot-houston committed Mar 14, 2024
1 parent 2436c9d commit 973a07f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions packages/astro/test/ssr-api-route.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,9 @@ describe('API routes in SSR', () => {
assert.deepEqual(data.params, { param: 'any' });
assert.match(data.generator, /^Astro v/);
assert.equal(
[
'http://[::1]:4321/blog/context/any',
'http://127.0.0.1:4321/blog/context/any',
].includes(data.url),
['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);
Expand Down

0 comments on commit 973a07f

Please sign in to comment.