mirror of
https://github.com/withastro/astro.git
synced 2025-02-03 22:29:08 -05:00
* Remove functionPerRoute option * Remove more code * Remove unused test util * Linting * Update tests to reflect new structure * Add a changeset * Update plugin * Remove unused import
24 lines
682 B
JavaScript
24 lines
682 B
JavaScript
import assert from 'node:assert/strict';
|
|
import { before, describe, it } from 'node:test';
|
|
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 () => {
|
|
assert.ok(await fixture.readFile('../.vercel/output/static/index.html'));
|
|
assert.ok(
|
|
await fixture.readFile('../.vercel/output/functions/_render.func/.vc-config.json'),
|
|
);
|
|
});
|
|
});
|