blob: 909580dd9ce52517b756e5efd80c5bb152dac918 (
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
|
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');
});
});
|