Skip to content

Commit

Permalink
Remove low timeouts from tests that cause false positives
Browse files Browse the repository at this point in the history
  • Loading branch information
csnover committed Sep 25, 2015
1 parent 66f307f commit 8d3d3a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/unit/lib/Suite.js
Expand Up @@ -258,7 +258,7 @@ define([
},

'Suite#setup -> promise': function () {
var dfd = this.async(1000);
var dfd = this.async();
var suite = createSuite();
var waited = false;

Expand All @@ -279,7 +279,7 @@ define([
},

'Suite#beforeEach -> promise': function () {
var dfd = this.async(1000);
var dfd = this.async();
var suite = createSuite();
var results = [];
var counter = 0;
Expand Down Expand Up @@ -309,7 +309,7 @@ define([
},

'Suite#afterEach -> promise': function () {
var dfd = this.async(1000);
var dfd = this.async();
var suite = createSuite();
var results = [];
var counter = 0;
Expand Down Expand Up @@ -339,7 +339,7 @@ define([
},

'Suite#teardown -> promise': function () {
var dfd = this.async(1000);
var dfd = this.async();
var suite = createSuite();
var waited = false;

Expand Down

0 comments on commit 8d3d3a3

Please sign in to comment.