summaryrefslogtreecommitdiff
path: root/packages/integrations/sitemap/test/dynamic-path.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/sitemap/test/dynamic-path.test.js')
-rw-r--r--packages/integrations/sitemap/test/dynamic-path.test.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/integrations/sitemap/test/dynamic-path.test.js b/packages/integrations/sitemap/test/dynamic-path.test.js
new file mode 100644
index 000000000..4f84af39e
--- /dev/null
+++ b/packages/integrations/sitemap/test/dynamic-path.test.js
@@ -0,0 +1,24 @@
+import {before, describe, it} from "node:test";
+import {loadFixture, readXML} from "./test-utils.js";
+import assert from "node:assert/strict";
+
+describe('Dynamic with rest parameter', () => {
+ /** @type {import('./test-utils.js').Fixture} */
+ let fixture;
+
+ before(async () => {
+ fixture = await loadFixture({
+ root: './fixtures/dynamic',
+ });
+ await fixture.build();
+ });
+
+ 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]);
+
+ assert.ok(urls.includes('http://example.com/'));
+ assert.ok(urls.includes('http://example.com/blog/'));
+ assert.ok(urls.includes('http://example.com/test/'));
+ });
+})