2023-06-29 20:18:28 +00:00
|
|
|
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,
|
2023-06-29 20:21:41 +00:00
|
|
|
},
|
2023-06-29 20:18:28 +00:00
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('creates separate functions for each page', async () => {
|
2023-06-29 20:21:41 +00:00
|
|
|
const files = await fixture.readdir('../.vercel/output/functions/');
|
2023-06-29 20:18:28 +00:00
|
|
|
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(3);
|
2023-06-29 20:21:41 +00:00
|
|
|
});
|
2023-06-29 20:18:28 +00:00
|
|
|
});
|