diff options
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, 4 insertions, 3 deletions
diff --git a/packages/integrations/sitemap/test/base-path.test.js b/packages/integrations/sitemap/test/base-path.test.js index a90f28c30..dd80fd29a 100644 --- a/packages/integrations/sitemap/test/base-path.test.js +++ b/packages/integrations/sitemap/test/base-path.test.js @@ -1,5 +1,6 @@ import { loadFixture, readXML } from './test-utils.js'; -import { expect } from 'chai'; +import assert from 'node:assert/strict'; +import { before, describe, it } from 'node:test'; describe('URLs with base path', () => { /** @type {import('./test-utils').Fixture} */ @@ -17,7 +18,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; - expect(urls[0].loc[0]).to.equal('http://example.com/base/one/'); + assert.equal(urls[0].loc[0], 'http://example.com/base/one/'); }); }); @@ -33,7 +34,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; - expect(urls[0].loc[0]).to.equal('http://example.com/base/123/'); + assert.equal(urls[0].loc[0], 'http://example.com/base/123/'); }); }); }); |