Skip to content
This repository has been archived by the owner on Jan 25, 2020. It is now read-only.

Commit

Permalink
use this.timeout(0) in tests as mocha has fixed issue mochajs/mocha#1300
Browse files Browse the repository at this point in the history
  • Loading branch information
grawk committed Jun 27, 2016
1 parent 1638b49 commit bf64bc1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/app-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var assert = require('assert'),

describe('kraken:app', function () {
// Disable timeout since we're doing a full install
this.timeout(Infinity);
this.timeout(0);

it('scaffolded application can run the build task', function (done) {
var base = testutil.makeBase('app');
Expand Down
2 changes: 1 addition & 1 deletion test/app-prompts.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var assert = require('yeoman-assert'),
describe('kraken:app', function () {

// Disable timeout since we're doing multiple installs
this.timeout(Infinity);
this.timeout(0);

it('creates an app which uses dust', function (done) {
var base = testutil.makeBase('app');
Expand Down
2 changes: 1 addition & 1 deletion test/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var testutil = require('./util');


describe('kraken:app', function () {
this.timeout(Infinity);
this.timeout(0);

it('scaffolds dot files', function (done) {
var base = testutil.makeBase('app');
Expand Down

0 comments on commit bf64bc1

Please sign in to comment.