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

Commit

Permalink
Update chai and mocha
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Tatarintsev authored and Vladimir Alaev committed Sep 10, 2013
1 parent 6b77bd6 commit 72d86b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
"ometajs": "~3.2.4",
"xjst": "0.4.13",
"mocha-coverjs": "*",
"mocha": "~1.11.0",
"chai": "~1.0.3",
"mocha": "~1.12.0",
"chai": "~1.7.2",
"coverjs": ">= 0.0.7-alpha",
"jshint": "~2.1.4",
"sinon": "~1.7.3"
Expand Down
4 changes: 2 additions & 2 deletions test/tech.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ function testBaseTech(techPath, techAlias) {

Q.done(res, function(res) {
tech.getSuffixes().forEach(function(suffix) {
assert.include(res, suffix);
assert.property(res, suffix);
});
done();
}, done);
Expand All @@ -266,7 +266,7 @@ function testBaseTech(techPath, techAlias) {

Q.done(res, function(res) {
tech.getSuffixes().forEach(function(suffix) {
assert.include(res, suffix);
assert.property(res, suffix);
});
done();
}, done);
Expand Down

0 comments on commit 72d86b2

Please sign in to comment.