[ci] format
This commit is contained in:
parent
dd931a7806
commit
b0d3652c59
1 changed files with 5 additions and 5 deletions
|
@ -4,23 +4,23 @@ import { expect } from 'chai';
|
||||||
describe('routes', () => {
|
describe('routes', () => {
|
||||||
/** @type {import('./test-utils.js').Fixture} */
|
/** @type {import('./test-utils.js').Fixture} */
|
||||||
let fixture;
|
let fixture;
|
||||||
/** @type {string[]} */
|
/** @type {string[]} */
|
||||||
let urls;
|
let urls;
|
||||||
|
|
||||||
before(async () => {
|
before(async () => {
|
||||||
fixture = await loadFixture({
|
fixture = await loadFixture({
|
||||||
root: './fixtures/static/',
|
root: './fixtures/static/',
|
||||||
});
|
});
|
||||||
await fixture.build();
|
await fixture.build();
|
||||||
const data = await readXML(fixture.readFile('/sitemap-0.xml'));
|
const data = await readXML(fixture.readFile('/sitemap-0.xml'));
|
||||||
urls = data.urlset.url.map(url => url.loc[0]);
|
urls = data.urlset.url.map((url) => url.loc[0]);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('does not include endpoints', async () => {
|
it('does not include endpoints', async () => {
|
||||||
expect(urls).to.not.include('http://example.com/endpoint.json');
|
expect(urls).to.not.include('http://example.com/endpoint.json');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('does not include redirects', async () => {
|
it('does not include redirects', async () => {
|
||||||
expect(urls).to.not.include('http://example.com/redirect');
|
expect(urls).to.not.include('http://example.com/redirect');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue