summaryrefslogtreecommitdiff
path: root/packages/integrations/sitemap/test/base-path.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/sitemap/test/base-path.test.js')
-rw-r--r--packages/integrations/sitemap/test/base-path.test.js7
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/');
});
});
});