[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', () => {
|
||||
/** @type {import('./test-utils.js').Fixture} */
|
||||
let fixture;
|
||||
/** @type {string[]} */
|
||||
let urls;
|
||||
/** @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]);
|
||||
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 () => {
|
||||
it('does not include redirects', async () => {
|
||||
expect(urls).to.not.include('http://example.com/redirect');
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue