astro/packages/integrations/sitemap/test/routes.test.js
Nate Moore dd931a7806
Sitemap should only include page routes (#7656)
* fix(#7080): sitemap should only add trailing slash to pages

* fix(sitemap): only include pages in sitemap

* chore: add test

* chore: remove unused import

* docs: update readme
2023-07-17 15:29:56 -05:00

26 lines
708 B
JavaScript

import { loadFixture, readXML } from './test-utils.js';
import { expect } from 'chai';
describe('routes', () => {
/** @type {import('./test-utils.js').Fixture} */
let fixture;
/** @type {string[]} */
let urls;
before(async () => {
fixture = await loadFixture({
root: './fixtures/static/',
});
await fixture.build();
const data = await readXML(fixture.readFile('/sitemap-0.xml'));
urls = data.urlset.url.map(url => url.loc[0]);
});
it('does not include endpoints', async () => {
expect(urls).to.not.include('http://example.com/endpoint.json');
});
it('does not include redirects', async () => {
expect(urls).to.not.include('http://example.com/redirect');
});
});