Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

Commit

Permalink
Merge pull request mochajs#2660 from mochajs/increase-intergration-te…
Browse files Browse the repository at this point in the history
…st-timeouts

Double timeouts on integration tests
  • Loading branch information
Munter committed Jan 9, 2017
2 parents 52b6572 + e329e2e commit d7acdb8
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 d7acdb8

Please sign in to comment.