Really remove the sinon and chai boilerplate
It turns out we don't need Sinon-Chai because we only use the assert interface. According to the Sinon-Chai docs: For assert interface there is no need for this library. Instead, we just install the assertions into the assert object.
Showing
... | ... | @@ -29,11 +29,12 @@ |
"jscs": "^1.13.1", | ||
"karma": "^0.12.17", | ||
"karma-browserify": "^3.0.3", | ||
"karma-chai-sinon": "^0.1.5", | ||
"karma-chai": "^0.1.0", | ||
"karma-cli": "0.0.4", | ||
"karma-mocha": "^0.1.4", | ||
"karma-ng-html2js-preprocessor": "^0.1.0", | ||
"karma-phantomjs-launcher": "^0.1.4", | ||
"karma-sinon": "^1.0.4", | ||
"mocha": "^1.20.1", | ||
"phantomjs": "^1.9.7", | ||
"sinon": "^1.15.4", | ||
... | ... |
Please register or sign in to comment