diff options
author | 2024-01-31 09:47:21 +0000 | |
---|---|---|
committer | 2024-01-31 09:47:21 +0000 | |
commit | 1c4a263d8f044d675b3338b77b1470af93e32ca3 (patch) | |
tree | 6d0d0705fb753a8eec12b245b7df891853cedc2b /packages/integrations/sitemap/test/base-path.test.js | |
parent | 11d5e52710def26b4fd8dcff503c9ff4b87f6f5a (diff) | |
download | astro-1c4a263d8f044d675b3338b77b1470af93e32ca3.tar.gz astro-1c4a263d8f044d675b3338b77b1470af93e32ca3.tar.zst astro-1c4a263d8f044d675b3338b77b1470af93e32ca3.zip |
Revert "chore(@astrojs/integrations/sitemap): use Node.js for testing (#9891)" (#9900)
This reverts commit 82de54979e90f7f46b832cf5ae88fcc5fed43568.
Diffstat (limited to 'packages/integrations/sitemap/test/base-path.test.js')
-rw-r--r-- | packages/integrations/sitemap/test/base-path.test.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/integrations/sitemap/test/base-path.test.js b/packages/integrations/sitemap/test/base-path.test.js index 96bf5e209..a90f28c30 100644 --- a/packages/integrations/sitemap/test/base-path.test.js +++ b/packages/integrations/sitemap/test/base-path.test.js @@ -1,6 +1,5 @@ import { loadFixture, readXML } from './test-utils.js'; -import * as assert from 'node:assert/strict'; -import { describe, it, before } from 'node:test'; +import { expect } from 'chai'; describe('URLs with base path', () => { /** @type {import('./test-utils').Fixture} */ @@ -18,7 +17,7 @@ describe('URLs with base path', () => { 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/'); + expect(urls[0].loc[0]).to.equal('http://example.com/base/one/'); }); }); @@ -34,7 +33,7 @@ describe('URLs with base path', () => { 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/'); + expect(urls[0].loc[0]).to.equal('http://example.com/base/123/'); }); }); }); |