summaryrefslogtreecommitdiff
path: root/packages/integrations/vercel/test/split.test.js
diff options
context:
space:
mode:
authorGravatar Hee <lee111dae11@gmail.com> 2023-08-02 08:06:50 +0900
committerGravatar GitHub <noreply@github.com> 2023-08-01 18:06:50 -0500
commit560d0dab1cc7510e5d01f38955c13b329ebf66ff (patch)
tree91adbc008005b8904e3135d32e592f88e27ffa2d /packages/integrations/vercel/test/split.test.js
parent4dd6c7900ca40db1b2cebed9bd02a9eb00874d8d (diff)
downloadastro-560d0dab1cc7510e5d01f38955c13b329ebf66ff.tar.gz
astro-560d0dab1cc7510e5d01f38955c13b329ebf66ff.tar.zst
astro-560d0dab1cc7510e5d01f38955c13b329ebf66ff.zip
feat: add cache headers to assets in Vercel adapter (#7729)
* feat: cache assets in Vercel adapter * Update tidy-tips-doubt.md * chore: update lockfile * Update packages/integrations/vercel/test/static-assets.test.js * Update packages/integrations/vercel/test/static-assets.test.js * Update packages/integrations/vercel/test/static-assets.test.js * chore: update split test --------- Co-authored-by: Kid <44045911+kidonng@users.noreply.github.com> Co-authored-by: Nate Moore <nate@astro.build> Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/vercel/test/split.test.js')
-rw-r--r--packages/integrations/vercel/test/split.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/vercel/test/split.test.js b/packages/integrations/vercel/test/split.test.js
index 4f3f3904e..9044954f2 100644
--- a/packages/integrations/vercel/test/split.test.js
+++ b/packages/integrations/vercel/test/split.test.js
@@ -24,6 +24,6 @@ describe('build: split', () => {
it('creates the route definitions in the config.json', async () => {
const json = await fixture.readFile('../.vercel/output/config.json');
const config = JSON.parse(json);
- expect(config.routes).to.have.a.lengthOf(3);
+ expect(config.routes).to.have.a.lengthOf(4);
});
});