Skip to content

Commit

Permalink
skipped broken connection tests (see issue #915)
Browse files Browse the repository at this point in the history
  • Loading branch information
epoberezkin committed Nov 1, 2015
1 parent f62932d commit e549b9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/connection.spec.js
Expand Up @@ -20,7 +20,7 @@ describe("connection tests", function () {
});

describe("on lost connection", function () {
it("emit an error after max retry attempts and do not try to reconnect afterwards", function (done) {
it.skip("emit an error after max retry attempts and do not try to reconnect afterwards", function (done) {
var max_attempts = 4;
var options = {
parser: parser,
Expand Down Expand Up @@ -48,7 +48,7 @@ describe("connection tests", function () {
});
});

it("emit an error after max retry timeout and do not try to reconnect afterwards", function (done) {
it.skip("emit an error after max retry timeout and do not try to reconnect afterwards", function (done) {
// TODO: Investigate why this test fails with windows. Reconnect is only triggered once
if (process.platform === 'win32') this.skip();

Expand Down

0 comments on commit e549b9a

Please sign in to comment.