diff --git a/src/tests/test.es5.js b/src/tests/test.es5.js index e5e535b..1136d92 100644 --- a/src/tests/test.es5.js +++ b/src/tests/test.es5.js @@ -88,9 +88,9 @@ describe('Sitemapper', function () { }); }); - it('https://www.google.com/work/sitemap.xml sitemaps should be an array', function (done) { + it('https://webflow.com/sitemap.xml sitemaps should be an array', function (done) { this.timeout(30000); - const url = 'https://www.google.com/work/sitemap.xml'; + const url = 'https://webflow.com/sitemap.xml'; sitemapper.fetch(url) .then(data => { data.sites.should.be.Array; diff --git a/src/tests/test.js b/src/tests/test.js index 0a6a893..0600abd 100644 --- a/src/tests/test.js +++ b/src/tests/test.js @@ -93,9 +93,9 @@ describe('Sitemapper', function () { }); }); - it('https://www.google.com/work/sitemap.xml sitemaps should be an array', function (done) { + it('https://webflow.com/sitemap.xml sitemaps should be an array', function (done) { this.timeout(30000); - const url = 'https://www.google.com/work/sitemap.xml'; + const url = 'https://webflow.com/sitemap.xml'; sitemapper.fetch(url) .then(data => { data.sites.should.be.Array; diff --git a/src/tests/test.ts.ts b/src/tests/test.ts.ts index fc838ca..34185bb 100644 --- a/src/tests/test.ts.ts +++ b/src/tests/test.ts.ts @@ -102,9 +102,9 @@ describe('Sitemapper', function () { }); }); - it('https://www.google.com/work/sitemap.xml sitemaps should be an array', function (done) { + it('https://webflow.com/sitemap.xml sitemaps should be an array', function (done) { this.timeout(30000); - const url = 'https://www.google.com/work/sitemap.xml'; + const url = 'https://webflow.com/sitemap.xml'; sitemapper.fetch(url) .then(data => { data.sites.should.be.Array;