summaryrefslogtreecommitdiff
path: root/packages/integrations/vercel/test/static.test.js
diff options
context:
space:
mode:
authorGravatar Arsh <lilnasy@users.noreply.github.com> 2024-01-05 18:28:59 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2024-01-05 18:28:59 +0000
commitbd3f36e6aba779b3bbe645a7cfee939021da786c (patch)
tree5428701255d062d5f0559d52aa6dea1d09683d0b /packages/integrations/vercel/test/static.test.js
parent22a5405b4a4b7948458ad170b0a7bde6954058c1 (diff)
downloadastro-bd3f36e6aba779b3bbe645a7cfee939021da786c.tar.gz
astro-bd3f36e6aba779b3bbe645a7cfee939021da786c.tar.zst
astro-bd3f36e6aba779b3bbe645a7cfee939021da786c.zip
[ci] format
Diffstat (limited to 'packages/integrations/vercel/test/static.test.js')
-rw-r--r--packages/integrations/vercel/test/static.test.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/packages/integrations/vercel/test/static.test.js b/packages/integrations/vercel/test/static.test.js
index db8e48a5a..fc97e46ad 100644
--- a/packages/integrations/vercel/test/static.test.js
+++ b/packages/integrations/vercel/test/static.test.js
@@ -13,14 +13,12 @@ describe('maxDuration', () => {
});
it('falls back to 404.html', async () => {
- const deploymentConfig = JSON.parse(
- await fixture.readFile('../.vercel/output/config.json')
- );
+ const deploymentConfig = JSON.parse(await fixture.readFile('../.vercel/output/config.json'));
// change the index if necesseary
expect(deploymentConfig.routes[2]).to.deep.include({
src: '/.*',
dest: '/404.html',
- status: 404
+ status: 404,
});
});
});