1.0.0 • Published 9 years ago

karma-should-promised v1.0.0

Weekly downloads
76
License
-
Repository
github
Last release
9 years ago

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'],
    #...
  });
}

See Should.js documentation.