Skip to content

Commit

Permalink
- update sitemap snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonbahl committed Sep 13, 2024
1 parent 4e1fd0e commit 9eafcfa
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`createSitemap() returns a sitemap with no links 1`] = `
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\"?>
<urlset xmlns=\\"http://www.sitemaps.org/schemas/sitemap/0.9\\">
"<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
</urlset>"
`;

exports[`createSitemap() returns a sitemap with specified urls 1`] = `
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\"?>
<urlset xmlns=\\"http://www.sitemaps.org/schemas/sitemap/0.9\\">
"<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://localhost:3000/</loc>
<lastmod>2022-01-01</lastmod>
Expand Down Expand Up @@ -40,15 +40,15 @@ exports[`createSitemap() returns a sitemap with specified urls 1`] = `
`;

exports[`createSitemapIndex() returns a sitemap index with no sitemaps 1`] = `
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\"?>
<sitemapindex xmlns=\\"http://www.sitemaps.org/schemas/sitemap/0.9\\">
"<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
</sitemapindex>"
`;

exports[`createSitemapIndex() returns a sitemap index with specified sitemaps 1`] = `
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\"?>
<sitemapindex xmlns=\\"http://www.sitemaps.org/schemas/sitemap/0.9\\">
"<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>http://localhost:3000/post-sitemap.xml</loc>
<lastmod>2022-01-01</lastmod>
Expand Down

0 comments on commit 9eafcfa

Please sign in to comment.