Skip to content

Commit

Permalink
Merge pull request #14 from meeber/chai-v4
Browse files Browse the repository at this point in the history
Fix broken test in Chai v4
  • Loading branch information
lucasfcosta authored Jan 3, 2017
2 parents 6fa209b + 4d4c84f commit 229c603
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/timers.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe('Chai Timers', function () {
timer.created.should.be.a('date');

timer.should.have.property('elapsed')
.to.be.a('number').above('9');
.to.be.a('number').above(9);
done();
}, 10);
});
Expand Down

0 comments on commit 229c603

Please sign in to comment.