diff options
author | 2023-06-29 20:21:41 +0000 | |
---|---|---|
committer | 2023-06-29 20:21:41 +0000 | |
commit | 7ae6e892921fd47c630b289a28d8100414f861e2 (patch) | |
tree | a9312d3186c3cdead88ef3fcf7e33e8328ad1277 /packages/integrations/vercel/test/split.test.js | |
parent | 154af8f5ead25b3cf100cfd445329bd1d3fe876a (diff) | |
download | astro-7ae6e892921fd47c630b289a28d8100414f861e2.tar.gz astro-7ae6e892921fd47c630b289a28d8100414f861e2.tar.zst astro-7ae6e892921fd47c630b289a28d8100414f861e2.zip |
[ci] format
Diffstat (limited to '')
-rw-r--r-- | packages/integrations/vercel/test/split.test.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/integrations/vercel/test/split.test.js b/packages/integrations/vercel/test/split.test.js index b89a428be..4f3f3904e 100644 --- a/packages/integrations/vercel/test/split.test.js +++ b/packages/integrations/vercel/test/split.test.js @@ -11,13 +11,13 @@ describe('build: split', () => { output: 'server', build: { split: true, - } + }, }); await fixture.build(); }); it('creates separate functions for each page', async () => { - const files = await fixture.readdir('../.vercel/output/functions/') + const files = await fixture.readdir('../.vercel/output/functions/'); expect(files.length).to.equal(2); }); @@ -25,5 +25,5 @@ describe('build: split', () => { const json = await fixture.readFile('../.vercel/output/config.json'); const config = JSON.parse(json); expect(config.routes).to.have.a.lengthOf(3); - }) + }); }); |