Skip to content

Commit

Permalink
Extend timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
DamonOehlman committed Mar 26, 2015
1 parent a5d7170 commit 4424b19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/connect.js
Expand Up @@ -32,7 +32,7 @@ test('receive call:started events for both connections', function(done) {
}
}

this.timeout(5000);
this.timeout(10e3);

connections[0].once('call:started', function(id) {
assert.equal(id, connections[1].id);
Expand Down
2 changes: 1 addition & 1 deletion test/datachannel.js
Expand Up @@ -39,7 +39,7 @@ test('receive channel:opened:test events for both connections', function(done) {
}
}

this.timeout(5000);
this.timeout(10e3);

connections[0].once('channel:opened:test', function(id, dc) {
assert.equal(id, connections[1].id);
Expand Down

0 comments on commit 4424b19

Please sign in to comment.