Skip to content

Commit

Permalink
Loosen Istanbul mocha timeout
Browse files Browse the repository at this point in the history
To account for the reduced CPU power on Travis CI boxes. Should fix
Travis failures.
  • Loading branch information
TimothyGu committed Jan 13, 2015
1 parent d781bd1 commit 4e308b2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/command-line.js
Expand Up @@ -52,8 +52,8 @@ try {

describe('command line with HTML output', function () {
if (isIstanbul) {
this.timeout(6000);
this.slow(4500);
this.timeout(8000);
this.slow(6000);
} else {
this.slow(250);
}
Expand Down Expand Up @@ -99,8 +99,8 @@ describe('command line with HTML output', function () {

describe('command line with client JS output', function () {
if (isIstanbul) {
this.timeout(6000);
this.slow(4500);
this.timeout(8000);
this.slow(6000);
} else {
this.slow(250);
}
Expand Down Expand Up @@ -174,8 +174,8 @@ describe('command line watch mode', function () {
});
it('jade --no-debug --client --name-after-file --watch input-file.jade (pass 1)', function (done) {
if (isIstanbul) {
this.timeout(6000);
this.slow(4500);
this.timeout(8000);
this.slow(6000);
} else {
this.slow(300);
}
Expand Down

0 comments on commit 4e308b2

Please sign in to comment.