summaryrefslogtreecommitdiff
path: root/packages/integrations/sitemap/test/staticPaths.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/sitemap/test/staticPaths.test.js')
-rw-r--r--packages/integrations/sitemap/test/staticPaths.test.js15
1 files changed, 8 insertions, 7 deletions
diff --git a/packages/integrations/sitemap/test/staticPaths.test.js b/packages/integrations/sitemap/test/staticPaths.test.js
index 603af163d..0e7353765 100644
--- a/packages/integrations/sitemap/test/staticPaths.test.js
+++ b/packages/integrations/sitemap/test/staticPaths.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('getStaticPaths support', () => {
/** @type {import('./test-utils.js').Fixture} */
@@ -19,24 +20,24 @@ describe('getStaticPaths support', () => {
});
it('requires zero config for getStaticPaths', async () => {
- expect(urls).to.include('http://example.com/one/');
- expect(urls).to.include('http://example.com/two/');
+ assert.equal(urls.includes('http://example.com/one/'), true);
+ assert.equal(urls.includes('http://example.com/two/'), true);
});
it('does not include 404 pages', () => {
- expect(urls).to.not.include('http://example.com/404/');
+ assert.equal(urls.includes('http://example.com/404/'), false);
});
it('does not include nested 404 pages', () => {
- expect(urls).to.not.include('http://example.com/de/404/');
+ assert.equal(urls.includes('http://example.com/de/404/'), false);
});
it('includes numerical pages', () => {
- expect(urls).to.include('http://example.com/123/');
+ assert.equal(urls.includes('http://example.com/123/'), true);
});
it('should render the endpoint', async () => {
const page = await fixture.readFile('./it/manifest');
- expect(page).to.contain('I\'m a route in the "it" language.');
+ assert.match(page, /I\'m a route in the "it" language./);
});
});