0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/packages/integrations/sitemap/test/dynamic-path.test.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
729 B
JavaScript
Raw Normal View History

2024-02-21 02:44:29 -05:00
import assert from 'node:assert/strict';
import { before, describe, it } from 'node:test';
import { loadFixture, readXML } from './test-utils.js';
describe('Dynamic with rest parameter', () => {
/** @type {import('./test-utils.js').Fixture} */
let fixture;
2024-02-21 02:44:29 -05:00
before(async () => {
fixture = await loadFixture({
root: './fixtures/dynamic',
});
await fixture.build();
});
2024-02-21 02:44:29 -05:00
it('Should generate correct urls', async () => {
const data = await readXML(fixture.readFile('/sitemap-0.xml'));
const urls = data.urlset.url.map((url) => url.loc[0]);
2024-02-21 02:44:29 -05:00
assert.ok(urls.includes('http://example.com/'));
assert.ok(urls.includes('http://example.com/blog/'));
assert.ok(urls.includes('http://example.com/test/'));
});
2024-02-21 02:44:29 -05:00
});