Skip to content

Commit

Permalink
Update test.js (#89)
Browse files Browse the repository at this point in the history
* Update test.js

* Updating tests

* Updating more tests
  • Loading branch information
seantomburke authored Aug 13, 2021
1 parent 1b7c36f commit e3660d9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/tests/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ describe('Sitemapper', function () {
});
});

it('https://www.banggood.com/sitemap/products-Toys-Hobbies-and-Robot-5-hu-HU.xml.gz gzip should be a non-empty array', function (done) {
it('https://m.banggood.com/sitemap/category.xml.gz gzip should be a non-empty array', function (done) {
this.timeout(30000);
const url = 'https://www.banggood.com/sitemap/products-Toys-Hobbies-and-Robot-5-hu-HU.xml.gz';
const url = 'https://m.banggood.com/sitemap/category.xml.gz';
sitemapper.timeout = 10000;
sitemapper.fetch(url)
.then(data => {
Expand All @@ -164,9 +164,9 @@ describe('Sitemapper', function () {
});
});

it('https://www.banggood.com/sitemap/products-Toys-Hobbies-and-Robot-5-hu-HU.xml.gz gzip should be a non-empty array', function (done) {
it('https://m.banggood.com/sitemap/category.xml.gz gzip should be a non-empty array', function (done) {
this.timeout(30000);
const url = 'https://www.banggood.com/sitemap/products-Toys-Hobbies-and-Robot-5-hu-HU.xml.gz';
const url = 'https://m.banggood.com/sitemap/category.xml.gz';
sitemapper.timeout = 10000;
sitemapper.fetch(url)
.then(data => {
Expand Down

0 comments on commit e3660d9

Please sign in to comment.