aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/vercel/test/hosted/hosted.test.js
diff options
context:
space:
mode:
authorGravatar Alexander Niebuhr <alexander@nbhr.io> 2024-08-29 08:17:42 +0200
committerGravatar Alexander Niebuhr <alexander@nbhr.io> 2024-08-29 08:17:42 +0200
commita73afb7f43f4cfd4da70f10091702500fdef229c (patch)
tree51f4967fbf3a5b409e221e8a3d591f1a88a7b433 /packages/integrations/vercel/test/hosted/hosted.test.js
parent6446ea1092753db02244216d5fdbab861bade4df (diff)
downloadastro-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.js3
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);