Skip to content

Commit

Permalink
test(connection): adjust delay time to improve ci pass rate
Browse files Browse the repository at this point in the history
  • Loading branch information
Fonger committed Aug 13, 2018
1 parent c8d0258 commit 127c750
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/connection.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ describe('connections:', function() {
}).
then(function() {
return new Promise(function(resolve) {
setTimeout(function() { resolve(); }, 50);
setTimeout(function() { resolve(); }, 100);
});
}).
then(function() {
Expand All @@ -157,7 +157,7 @@ describe('connections:', function() {
}).
then(function() {
return new Promise(function(resolve) {
setTimeout(function() { resolve(); }, 2000);
setTimeout(function() { resolve(); }, 4000);
});
}).
then(function() {
Expand Down

0 comments on commit 127c750

Please sign in to comment.