mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-29 18:27:56 +02:00
* refactor(v2): remove i18n & versioning + cleaner code * totally remove i18n and versioning from plugin
32 lines
1.4 KiB
JavaScript
32 lines
1.4 KiB
JavaScript
/**
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import loadSetup from '../../../docusaurus/lib/server/load/__tests__/loadSetup';
|
|
import DocusaurusPluginSitemap from '../index';
|
|
|
|
describe('docusaurus-plugin-sitemap', () => {
|
|
describe('createSitemap', () => {
|
|
test.each(['simple'])('%s website', async type => {
|
|
const context = await loadSetup(type);
|
|
const plugin = new DocusaurusPluginSitemap(context, null);
|
|
const sitemap = await plugin.createSitemap(context);
|
|
expect(sitemap).toContain(
|
|
`<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">`,
|
|
);
|
|
});
|
|
|
|
test('empty site', async () => {
|
|
const context = await loadSetup('empty');
|
|
const plugin = new DocusaurusPluginSitemap(context, null);
|
|
expect(
|
|
plugin.createSitemap(context),
|
|
).rejects.toThrowErrorMatchingInlineSnapshot(
|
|
`"Url in docusaurus.config.js cannot be empty/undefined"`,
|
|
);
|
|
});
|
|
});
|
|
});
|