summaryrefslogtreecommitdiff
path: root/packages/integrations/vercel/test/serverless-with-dynamic-routes.test.js
diff options
context:
space:
mode:
authorGravatar ematipico <ematipico@users.noreply.github.com> 2023-09-06 04:46:18 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-09-06 04:46:18 +0000
commiteb8c4cc2fc578095e73f80c712615f323c7cbc61 (patch)
tree5343cbf3dd6903d1bb540c12743a00c362f21772 /packages/integrations/vercel/test/serverless-with-dynamic-routes.test.js
parent9ffa1a84e81f52d55ffe07826b8b1f10fc023ee9 (diff)
downloadastro-eb8c4cc2fc578095e73f80c712615f323c7cbc61.tar.gz
astro-eb8c4cc2fc578095e73f80c712615f323c7cbc61.tar.zst
astro-eb8c4cc2fc578095e73f80c712615f323c7cbc61.zip
[ci] format
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.js7
1 files changed, 5 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 325f9c5b0..fae3aef95 100644
--- a/packages/integrations/vercel/test/serverless-with-dynamic-routes.test.js
+++ b/packages/integrations/vercel/test/serverless-with-dynamic-routes.test.js
@@ -16,7 +16,10 @@ describe('Serverless with dynamic routes', () => {
it('build successful', async () => {
expect(await fixture.readFile('../.vercel/output/static/index.html')).to.be.ok;
- expect(await fixture.readFile('../.vercel/output/functions/[id]/index.astro.func/.vc-config.json')).to.be.ok;
- expect(await fixture.readFile('../.vercel/output/functions/api/[id].js.func/.vc-config.json')).to.be.ok;
+ expect(
+ await fixture.readFile('../.vercel/output/functions/[id]/index.astro.func/.vc-config.json')
+ ).to.be.ok;
+ expect(await fixture.readFile('../.vercel/output/functions/api/[id].js.func/.vc-config.json'))
+ .to.be.ok;
});
});