560d0dab1c
* 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>
29 lines
759 B
JavaScript
29 lines
759 B
JavaScript
import { loadFixture } from './test-utils.js';
|
|
import { expect } from 'chai';
|
|
|
|
describe('build: split', () => {
|
|
/** @type {import('./test-utils').Fixture} */
|
|
let fixture;
|
|
|
|
before(async () => {
|
|
fixture = await loadFixture({
|
|
root: './fixtures/basic/',
|
|
output: 'server',
|
|
build: {
|
|
split: true,
|
|
},
|
|
});
|
|
await fixture.build();
|
|
});
|
|
|
|
it('creates separate functions for each page', async () => {
|
|
const files = await fixture.readdir('../.vercel/output/functions/');
|
|
expect(files.length).to.equal(2);
|
|
});
|
|
|
|
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);
|
|
});
|
|
});
|