2022-04-06 15:21:46 -05:00
|
|
|
import { expect } from 'chai';
|
2022-04-19 10:22:15 -05:00
|
|
|
import netlifyAdapter from '../../dist/index.js';
|
|
|
|
import { loadFixture, testIntegration } from './test-utils.js';
|
2022-04-06 15:21:46 -05:00
|
|
|
|
|
|
|
describe('Dynamic pages', () => {
|
2022-04-19 10:22:15 -05:00
|
|
|
/** @type {import('./test-utils').Fixture} */
|
2022-04-06 15:21:46 -05:00
|
|
|
let fixture;
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: new URL('./fixtures/dynamic-route/', import.meta.url).toString(),
|
2022-07-24 23:18:02 -05:00
|
|
|
output: 'server',
|
2022-04-06 15:21:46 -05:00
|
|
|
adapter: netlifyAdapter({
|
2022-04-06 15:22:36 -05:00
|
|
|
dist: new URL('./fixtures/dynamic-route/dist/', import.meta.url),
|
2022-04-06 15:21:46 -05:00
|
|
|
}),
|
|
|
|
site: `http://example.com`,
|
2022-04-19 10:23:07 -05:00
|
|
|
integrations: [testIntegration()],
|
2022-04-06 15:21:46 -05:00
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Dynamic pages are included in the redirects file', async () => {
|
|
|
|
const redir = await fixture.readFile('/_redirects');
|
|
|
|
expect(redir).to.match(/\/products\/\*/);
|
|
|
|
});
|
|
|
|
});
|