diff options
author | 2024-02-16 09:57:45 +0000 | |
---|---|---|
committer | 2024-02-16 09:57:45 +0000 | |
commit | 768ef569a34f4e6e2e12df8946ee861823d0685e (patch) | |
tree | 5795bf25e74816c85764441e8d14d2cd5e70d36d /packages/integrations/netlify/test/hosted/hosted.test.js | |
parent | 5bbbeaff265de7e663124fa19170764b3d0372ba (diff) | |
download | astro-768ef569a34f4e6e2e12df8946ee861823d0685e.tar.gz astro-768ef569a34f4e6e2e12df8946ee861823d0685e.tar.zst astro-768ef569a34f4e6e2e12df8946ee861823d0685e.zip |
[ci] format
Diffstat (limited to 'packages/integrations/netlify/test/hosted/hosted.test.js')
-rw-r--r-- | packages/integrations/netlify/test/hosted/hosted.test.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/integrations/netlify/test/hosted/hosted.test.js b/packages/integrations/netlify/test/hosted/hosted.test.js index 95d808031..237ba5998 100644 --- a/packages/integrations/netlify/test/hosted/hosted.test.js +++ b/packages/integrations/netlify/test/hosted/hosted.test.js @@ -1,5 +1,5 @@ -import { describe, it, before } from 'node:test'; import * as assert from 'node:assert/strict'; +import { before, describe, it } from 'node:test'; const NETLIFY_TEST_URL = 'https://curious-boba-495d6d.netlify.app'; @@ -9,7 +9,7 @@ describe('Hosted Netlify Tests', () => { `${NETLIFY_TEST_URL}/_image?href=%2F_astro%2Fpenguin.e9c64733.png&w=300&f=webp` ); - assert.equal(image.status,200); + assert.equal(image.status, 200); }); it('Server returns fresh content', async () => { @@ -17,6 +17,6 @@ describe('Hosted Netlify Tests', () => { const responseTwo = await fetch(`${NETLIFY_TEST_URL}/time`); - assert.notEqual(responseOne.body,responseTwo.body); + assert.notEqual(responseOne.body, responseTwo.body); }); }); |