diff options
author | 2023-08-16 10:21:05 +0200 | |
---|---|---|
committer | 2023-08-16 10:21:05 +0200 | |
commit | b76c166bdd8e28683f62806aef968d1e0c3b06d9 (patch) | |
tree | 31a737ce2999e8cd625f3948b4bf326ed8b6489a /packages/integrations/vercel/test/split.test.js | |
parent | e12a1018429eb506a8507a4b9ae57388be4d0f7f (diff) | |
download | astro-b76c166bdd8e28683f62806aef968d1e0c3b06d9.tar.gz astro-b76c166bdd8e28683f62806aef968d1e0c3b06d9.tar.zst astro-b76c166bdd8e28683f62806aef968d1e0c3b06d9.zip |
feat: unflag experimental.assets (#7921)
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
Diffstat (limited to 'packages/integrations/vercel/test/split.test.js')
-rw-r--r-- | packages/integrations/vercel/test/split.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/vercel/test/split.test.js b/packages/integrations/vercel/test/split.test.js index 85affb3ff..3f4e75d1b 100644 --- a/packages/integrations/vercel/test/split.test.js +++ b/packages/integrations/vercel/test/split.test.js @@ -15,12 +15,12 @@ describe('build: split', () => { it('creates separate functions for each page', async () => { const files = await fixture.readdir('../.vercel/output/functions/'); - expect(files.length).to.equal(2); + expect(files.length).to.equal(3); }); 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(4); + expect(config.routes).to.have.a.lengthOf(5); }); }); |