6fd161d769
* Start of work on astroConfig.mode === 'server' * Add tests and more * adapter -> deploy in some places * Add fallback for `adapter` config * Update more tests * Update image tests * Fix clientAddress test * Updates based on PR review * Add a changeset * Update integrations tests + readme * Oops * Remove old option * Rename `mode` to `output` * Update Node adapter test * Update test * fred pass * fred pass * fred pass * fix test Co-authored-by: Fred K. Schott <fkschott@gmail.com>
26 lines
782 B
JavaScript
26 lines
782 B
JavaScript
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\/\*/);
|
|
});
|
|
});
|