Skip to content

Commit

Permalink
test(url parser): use skip > commenting out
Browse files Browse the repository at this point in the history
  • Loading branch information
Jessica Lord committed Nov 20, 2017
1 parent 6c7eccb commit 861761e
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions test/functional/url_parser_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -1174,23 +1174,23 @@ describe('Url SRV Parser', function() {
}
});

// /**
// * @ignore
// */
// it('should handle text record with listable option override', {
// metadata: {
// requires: { topology: ['single'] }
// },
// test: function(done) {
// // TODO Test server has not been updated
// // mongodb+srv://test7.test.build.10gen.cc/?replicaSet=repl0&readPreferenceTags=dc:fr,item:cheese&readPreferenceTags=dc:de,item:hotdog
// parse('mongodb+srv://test7.test.build.10gen.cc', {}, function(err, object) {
// console.dir(object, { depth: 5 });
// expect(err).to.exist;
// done();
// });
// }
// });
/**
* @ignore
*/
it.skip('should handle text record with listable option override', {
metadata: {
requires: { topology: ['single'] }
},
test: function(done) {
// TODO Test server has not been updated, when updated fill out this test
// mongodb+srv://test7.test.build.10gen.cc/?replicaSet=repl0&readPreferenceTags=dc:fr,item:cheese&readPreferenceTags=dc:de,item:hotdog
parse('mongodb+srv://test7.test.build.10gen.cc', {}, function(err, object) {
console.dir(object, { depth: 5 });
expect(err).to.be.null;
done();
});
}
});

/**
* @ignore
Expand Down

0 comments on commit 861761e

Please sign in to comment.