Skip to content

Commit

Permalink
increase timeout on http-meta tests
Browse files Browse the repository at this point in the history
  • Loading branch information
boneskull committed Jun 1, 2017
1 parent a054380 commit acd7701
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/http-meta-2.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ describe('http server', function () {
server.listen(PORT, done);
});

beforeEach(function () {
this.timeout(2000);
});

after(function () {
server.close();
});
Expand Down
4 changes: 4 additions & 0 deletions test/http-meta.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ describe('http requests', function () {
server.listen(PORT, done);
});

beforeEach(function () {
this.timeout(2000);
});

after(function () {
server.close();
});
Expand Down

0 comments on commit acd7701

Please sign in to comment.