diff options
author | 2024-08-29 08:17:42 +0200 | |
---|---|---|
committer | 2024-08-29 08:17:42 +0200 | |
commit | a73afb7f43f4cfd4da70f10091702500fdef229c (patch) | |
tree | 51f4967fbf3a5b409e221e8a3d591f1a88a7b433 /packages/integrations/vercel/test/hosted/hosted.test.js | |
parent | 6446ea1092753db02244216d5fdbab861bade4df (diff) | |
download | astro-a73afb7f43f4cfd4da70f10091702500fdef229c.tar.gz astro-a73afb7f43f4cfd4da70f10091702500fdef229c.tar.zst astro-a73afb7f43f4cfd4da70f10091702500fdef229c.zip |
chore: supress linting
Diffstat (limited to 'packages/integrations/vercel/test/hosted/hosted.test.js')
-rw-r--r-- | packages/integrations/vercel/test/hosted/hosted.test.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/integrations/vercel/test/hosted/hosted.test.js b/packages/integrations/vercel/test/hosted/hosted.test.js index e090188a7..d7c2ece20 100644 --- a/packages/integrations/vercel/test/hosted/hosted.test.js +++ b/packages/integrations/vercel/test/hosted/hosted.test.js @@ -6,7 +6,8 @@ const VERCEL_TEST_URL = 'https://astro-vercel-image-test.vercel.app'; describe('Hosted Vercel Tests', () => { it('Image endpoint works', async () => { const image = await fetch( - VERCEL_TEST_URL + '/_image?href=%2F_astro%2Fpenguin.e9c64733.png&w=300&f=webp', + // biome-ignore lint/style/useTemplate: <explanation> + VERCEL_TEST_URL + '/_image?href=%2F_astro%2Fpenguin.e9c64733.png&w=300&f=webp' ); assert.equal(image.status, 200); |