Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
natemoo-re authored and astrobot-houston committed Jul 17, 2023
1 parent dd931a7 commit b0d3652
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/integrations/sitemap/test/routes.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});
});

0 comments on commit b0d3652

Please sign in to comment.