Skip to content

Commit

Permalink
Merge pull request #2660 from mochajs/increase-intergration-test-time…
Browse files Browse the repository at this point in the history
…outs

Double timeouts on integration tests
  • Loading branch information
Munter committed Jan 9, 2017
2 parents de81203 + ffc978a commit 2f10625
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/integration/suite.spec.js
Expand Up @@ -5,7 +5,7 @@ var run = require('./helpers').runMocha;
var args = [];

describe('suite w/no callback', function () {
this.timeout(1000);
this.timeout(2000);
it('should throw a helpful error message when a callback for suite is not supplied', function (done) {
run('suite/suite-no-callback.fixture.js', args, function (err, res) {
assert(!err);
Expand All @@ -17,7 +17,7 @@ describe('suite w/no callback', function () {
});

describe('skipped suite w/no callback', function () {
this.timeout(1000);
this.timeout(2000);
it('should not throw an error when a callback for skipped suite is not supplied', function (done) {
run('suite/suite-skipped-no-callback.fixture.js', args, function (err, res) {
assert(!err);
Expand All @@ -30,7 +30,7 @@ describe('skipped suite w/no callback', function () {
});

describe('skipped suite w/ callback', function () {
this.timeout(1000);
this.timeout(2000);
it('should not throw an error when a callback for skipped suite is supplied', function (done) {
run('suite/suite-skipped-callback.fixture.js', args, function (err, res) {
assert(!err);
Expand Down

0 comments on commit 2f10625

Please sign in to comment.