karma-should-promised
v1.0.0
Published
Should-promised for Karma
Downloads
5
Maintainers
Readme
karma-should-promised
Promise assertions for Should.js on karma
Installation
Install the module via npm
$ npm install karma-should-promised --save-dev
Add should-promised
to the frameworks
key in your Karma configuration.
module.exports = function(config) {
'use strict';
config.set({
#...
frameworks: ['mocha', 'should-promised', 'should'],
#...
});
}