blob: 9044954f28f5e5cd9ea01ce1b627a8f41d58739f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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);
});
});
|