diff options
author | 2023-09-06 04:46:18 +0000 | |
---|---|---|
committer | 2023-09-06 04:46:18 +0000 | |
commit | eb8c4cc2fc578095e73f80c712615f323c7cbc61 (patch) | |
tree | 5343cbf3dd6903d1bb540c12743a00c362f21772 /packages/integrations/vercel/test/serverless-with-dynamic-routes.test.js | |
parent | 9ffa1a84e81f52d55ffe07826b8b1f10fc023ee9 (diff) | |
download | astro-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.js | 7 |
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; }); }); |