diff options
author | 2024-02-21 07:44:29 +0000 | |
---|---|---|
committer | 2024-02-21 07:44:29 +0000 | |
commit | 8e51bf9ea9661c5228ec43e30b661fc422a5803d (patch) | |
tree | ee72feba7e9e6b548141bff2097ca6410915637a | |
parent | ec7d2ebbd96b8c2dfdadaf076bbf7953007536ed (diff) | |
download | astro-8e51bf9ea9661c5228ec43e30b661fc422a5803d.tar.gz astro-8e51bf9ea9661c5228ec43e30b661fc422a5803d.tar.zst astro-8e51bf9ea9661c5228ec43e30b661fc422a5803d.zip |
[ci] format
-rw-r--r-- | packages/integrations/sitemap/src/index.ts | 3 | ||||
-rw-r--r-- | packages/integrations/sitemap/test/dynamic-path.test.js | 14 |
2 files changed, 8 insertions, 9 deletions
diff --git a/packages/integrations/sitemap/src/index.ts b/packages/integrations/sitemap/src/index.ts index 4d280112b..5d2a271d2 100644 --- a/packages/integrations/sitemap/src/index.ts +++ b/packages/integrations/sitemap/src/index.ts @@ -98,8 +98,7 @@ const createPlugin = (options?: SitemapOptions): AstroIntegration => { .map((p) => { if (p.pathname !== '' && !finalSiteUrl.pathname.endsWith('/')) finalSiteUrl.pathname += '/'; - if (p.pathname.startsWith('/')) - p.pathname = p.pathname.slice(1); + if (p.pathname.startsWith('/')) p.pathname = p.pathname.slice(1); const fullPath = finalSiteUrl.pathname + p.pathname; return new URL(fullPath, finalSiteUrl).href; }); diff --git a/packages/integrations/sitemap/test/dynamic-path.test.js b/packages/integrations/sitemap/test/dynamic-path.test.js index 4f84af39e..851462ceb 100644 --- a/packages/integrations/sitemap/test/dynamic-path.test.js +++ b/packages/integrations/sitemap/test/dynamic-path.test.js @@ -1,24 +1,24 @@ -import {before, describe, it} from "node:test"; -import {loadFixture, readXML} from "./test-utils.js"; -import assert from "node:assert/strict"; +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/')); }); -}) +}); |