ad907196cb
* feat(sitemap): support SSR generated routes * feat(sitemap): add changeset for SSR support * refactor: move logic to `astro:build:done` * generate route to obey `trailingSlash` setting * add logic to respect "directory" build format * integration(sitemap): add unit test for ssr support
22 lines
594 B
JavaScript
22 lines
594 B
JavaScript
import { loadFixture, readXML } from './test-utils.js';
|
|
import { expect } from 'chai';
|
|
|
|
describe('SSR support', () => {
|
|
/** @type {import('./test-utils.js').Fixture} */
|
|
let fixture;
|
|
|
|
before(async () => {
|
|
fixture = await loadFixture({
|
|
root: './fixtures/ssr/',
|
|
});
|
|
await fixture.build();
|
|
});
|
|
|
|
it('SSR pages require zero config', async () => {
|
|
const data = await readXML(fixture.readFile('/client/sitemap-0.xml'));
|
|
const urls = data.urlset.url;
|
|
|
|
expect(urls[0].loc[0]).to.equal('http://example.com/one/');
|
|
expect(urls[1].loc[0]).to.equal('http://example.com/two/');
|
|
});
|
|
});
|