summaryrefslogtreecommitdiff
path: root/packages/integrations/sitemap/test/ssr.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/sitemap/test/ssr.test.js')
-rw-r--r--packages/integrations/sitemap/test/ssr.test.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/integrations/sitemap/test/ssr.test.js b/packages/integrations/sitemap/test/ssr.test.js
new file mode 100644
index 000000000..e6f8412d5
--- /dev/null
+++ b/packages/integrations/sitemap/test/ssr.test.js
@@ -0,0 +1,22 @@
+import { loadFixture, readXML } from './test-utils.js';
+import { expect } from 'chai';
+
+describe('SSR support', () => {
+ /** @type {import('./test-utils.js').Fixture} */
+ let fixture;
+
+ before(async () => {
+ fixture = await loadFixture({
+ root: './fixtures/ssr/',
+ });
+ await fixture.build();
+ });
+
+ it('SSR pages require zero config', async () => {
+ const data = await readXML(fixture.readFile('/client/sitemap-0.xml'));
+ const urls = data.urlset.url;
+
+ expect(urls[0].loc[0]).to.equal('http://example.com/one/');
+ expect(urls[1].loc[0]).to.equal('http://example.com/two/');
+ });
+});