2024-02-13 08:23:07 -05:00
|
|
|
import assert from 'node:assert/strict';
|
|
|
|
import { before, describe, it } from 'node:test';
|
2023-09-05 23:43:53 -05:00
|
|
|
import { loadFixture } from './test-utils.js';
|
|
|
|
|
|
|
|
describe('Serverless with dynamic routes', () => {
|
|
|
|
/** @type {import('./test-utils.js').Fixture} */
|
|
|
|
let fixture;
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
process.env.PRERENDER = true;
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/serverless-with-dynamic-routes/',
|
|
|
|
output: 'hybrid',
|
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('build successful', async () => {
|
2024-02-13 08:23:07 -05:00
|
|
|
assert.ok(await fixture.readFile('../.vercel/output/static/index.html'));
|
|
|
|
assert.ok(
|
2023-09-05 23:46:18 -05:00
|
|
|
await fixture.readFile('../.vercel/output/functions/[id]/index.astro.func/.vc-config.json')
|
2024-02-13 08:23:07 -05:00
|
|
|
);
|
|
|
|
assert.ok(
|
|
|
|
await fixture.readFile('../.vercel/output/functions/api/[id].js.func/.vc-config.json')
|
|
|
|
);
|
2023-09-05 23:43:53 -05:00
|
|
|
});
|
|
|
|
});
|