2024-02-13 08:23:07 -05:00
|
|
|
import assert from 'node:assert/strict';
|
|
|
|
import { before, describe, it } from 'node:test';
|
2024-01-10 09:52:29 -05:00
|
|
|
import { loadFixture } from './test-utils.js';
|
|
|
|
|
|
|
|
describe('prerendered error pages routing', () => {
|
|
|
|
/** @type {import('./test-utils.js').Fixture} */
|
|
|
|
let fixture;
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/prerendered-error-pages/',
|
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('falls back to 404.html', async () => {
|
|
|
|
const deploymentConfig = JSON.parse(await fixture.readFile('../.vercel/output/config.json'));
|
2024-02-13 08:23:07 -05:00
|
|
|
assert.deepEqual(deploymentConfig.routes.at(-1), {
|
2024-01-10 09:52:29 -05:00
|
|
|
src: '/.*',
|
|
|
|
dest: '/404.html',
|
|
|
|
status: 404,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|