summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/functions/dynamic-route.test.js
blob: 6bb68eab88ad68f47318f38248f296aee58bbcb4 (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
30
31
32
33
import { expect } from 'chai';
import netlifyAdapter from '../../dist/index.js';
import { loadFixture, testIntegration } from './test-utils.js';

describe('Dynamic pages', () => {
	/** @type {import('./test-utils').Fixture} */
	let fixture;

	before(async () => {
		fixture = await loadFixture({
			root: new URL('./fixtures/dynamic-route/', import.meta.url).toString(),
			output: 'server',
			adapter: netlifyAdapter({
				dist: new URL('./fixtures/dynamic-route/dist/', import.meta.url),
			}),
			site: `http://example.com`,
			integrations: [testIntegration()],
		});
		await fixture.build();
	});

	it('Dynamic pages are included in the redirects file', async () => {
		const redir = await fixture.readFile('/_redirects');
		expect(redir).to.match(/\/products\/:id/);
	});

	it('Prerendered routes are also included using placeholder syntax', async () => {
		const redir = await fixture.readFile('/_redirects');
		expect(redir).to.include('/pets/:cat       /pets/:cat/index.html        200');
		expect(redir).to.include('/pets/:dog       /pets/:dog/index.html        200');
		expect(redir).to.include('/pets            /.netlify/functions/entry    200');
	});
});
ogmsg'> * rename internal middleware id * add changeset 2023-11-23fix: Changelog formatting for 3.6.0 View Transition events (#9176)Gravatar Martin Trapp 1-3/+3 Co-authored-by: Eva Decker <itsevadecker@gmail.com> 2023-11-22[ci] formatGravatar Eva Decker 1-3/+3 2023-11-22Fix View Transitions code block formatting (#9174)Gravatar Eva Decker 1-3/+3 2023-11-22Rename entryPoint to entrypoint (#9161)Gravatar Bjorn Lu 14-26/+38 Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> 2023-11-22Fix esbuild warning for local dev (#9160)Gravatar Bjorn Lu 1-1/+1 2023-11-22[ci] release (#9165)astro@3.6.0Gravatar Houston (Bot) 34-90/+83 Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>