Skip to content

Commit

Permalink
skip tests related to OpenStreetMap
Browse files Browse the repository at this point in the history
  • Loading branch information
freshlogic committed May 30, 2020
1 parent 0aced38 commit cdc4ea2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/carriers/ups.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ describe('UPS', function() {
});
});

describe('ups.track', function() {
describe.skip('ups.track', function() {
this.timeout(60000);

it('should return an empty result if there is no tracking information available ', function(done) {
Expand Down
6 changes: 3 additions & 3 deletions test/util/geography.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ describe('geography.parseLocation', function() {
});
});

it('New York NY', function(done) {
it.skip('New York NY', function(done) {
geography.parseLocation('New York NY', function(err, actual) {
assert.ifError(err);

Expand All @@ -86,7 +86,7 @@ describe('geography.parseLocation', function() {
});
});

it('O FALLON, MO', function(done) {
it.skip('O FALLON, MO', function(done) {
geography.parseLocation('O FALLON, MO', function(err, actual) {
assert.ifError(err);

Expand All @@ -96,7 +96,7 @@ describe('geography.parseLocation', function() {
});
});

describe('petty-cache', function() {
describe.skip('petty-cache', function() {
this.timeout(15000);

it('should store results in Redis (via petty-cache)', function(done) {
Expand Down

0 comments on commit cdc4ea2

Please sign in to comment.