-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #65. Also tests against all supported Chai versions.
- Loading branch information
1 parent
aac0849
commit 3d47b80
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,16 +18,19 @@ | |
"lib" | ||
], | ||
"scripts": { | ||
"test": "mocha", | ||
"test": "npm run test-chai-1-9-2 && npm run test-chai-2-3-0 && npm run test-chai-3-0-0", | ||
"test-chai-1-9-2": "npm install [email protected] && mocha", | ||
"test-chai-2-3-0": "npm install [email protected] && mocha", | ||
"test-chai-3-0-0": "npm install [email protected] && mocha", | ||
"lint": "jshint ./lib", | ||
"cover": "istanbul cover node_modules/mocha/bin/_mocha && opener ./coverage/lcov-report/lib/sinon-chai.js.html" | ||
}, | ||
"peerDependencies": { | ||
"chai": ">=1.9.2 <3", | ||
"chai": ">=1.9.2 <4", | ||
"sinon": ">=1.4.0 <2" | ||
}, | ||
"devDependencies": { | ||
"chai": "^1.9.2", | ||
"chai": "^3.0.0", | ||
"coffee-script": "~1.8.0", | ||
"istanbul": "~0.3.2", | ||
"jshint": "^2.5.6", | ||
|