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/serverless-with-dynamic-routes.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/serverless-with-dynamic-routes.test.js')
-rw-r--r-- | packages/integrations/vercel/test/serverless-with-dynamic-routes.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/vercel/test/serverless-with-dynamic-routes.test.js b/packages/integrations/vercel/test/serverless-with-dynamic-routes.test.js index 3f9613834..0967f864b 100644 --- a/packages/integrations/vercel/test/serverless-with-dynamic-routes.test.js +++ b/packages/integrations/vercel/test/serverless-with-dynamic-routes.test.js @@ -18,10 +18,10 @@ describe('Serverless with dynamic routes', () => { it('build successful', async () => { assert.ok(await fixture.readFile('../.vercel/output/static/index.html')); assert.ok( - await fixture.readFile('../.vercel/output/functions/[id]/index.astro.func/.vc-config.json'), + await fixture.readFile('../.vercel/output/functions/[id]/index.astro.func/.vc-config.json') ); assert.ok( - await fixture.readFile('../.vercel/output/functions/api/[id].js.func/.vc-config.json'), + await fixture.readFile('../.vercel/output/functions/api/[id].js.func/.vc-config.json') ); }); }); |