diff options
Diffstat (limited to 'packages/integrations/sitemap/test/base-path.test.js')
-rw-r--r-- | packages/integrations/sitemap/test/base-path.test.js | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/packages/integrations/sitemap/test/base-path.test.js b/packages/integrations/sitemap/test/base-path.test.js index 0e4ec3716..96bf5e209 100644 --- a/packages/integrations/sitemap/test/base-path.test.js +++ b/packages/integrations/sitemap/test/base-path.test.js @@ -3,38 +3,38 @@ import * as assert from 'node:assert/strict'; import { describe, it, before } from 'node:test'; describe('URLs with base path', () => { - /** @type {import('./test-utils').Fixture} */ - let fixture; + /** @type {import('./test-utils').Fixture} */ + let fixture; - describe('using node adapter', () => { - before(async () => { - fixture = await loadFixture({ - root: './fixtures/ssr/', - base: '/base', - }); - await fixture.build(); - }); + describe('using node adapter', () => { + before(async () => { + fixture = await loadFixture({ + root: './fixtures/ssr/', + base: '/base', + }); + await fixture.build(); + }); - it('Base path is concatenated correctly', async () => { - const data = await readXML(fixture.readFile('/client/sitemap-0.xml')); - const urls = data.urlset.url; - assert.equal(urls[0].loc[0], 'http://example.com/base/one/'); - }); - }); + it('Base path is concatenated correctly', async () => { + const data = await readXML(fixture.readFile('/client/sitemap-0.xml')); + const urls = data.urlset.url; + assert.equal(urls[0].loc[0], 'http://example.com/base/one/'); + }); + }); - describe('static', () => { - before(async () => { - fixture = await loadFixture({ - root: './fixtures/static/', - base: '/base', - }); - await fixture.build(); - }); + describe('static', () => { + before(async () => { + fixture = await loadFixture({ + root: './fixtures/static/', + base: '/base', + }); + await fixture.build(); + }); - it('Base path is concatenated correctly', async () => { - const data = await readXML(fixture.readFile('/sitemap-0.xml')); - const urls = data.urlset.url; - assert.equal(urls[0].loc[0], 'http://example.com/base/123/'); - }); - }); + it('Base path is concatenated correctly', async () => { + const data = await readXML(fixture.readFile('/sitemap-0.xml')); + const urls = data.urlset.url; + assert.equal(urls[0].loc[0], 'http://example.com/base/123/'); + }); + }); }); |