1.0.0 • Published 9 years ago

karma-mocha-given v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

karma-mocha-given

Build Status Coverage Status Code Climate Dependency Status

Installation

$ npm install karma-mocha-given --save-dev

Add mocha-given to the frameworks key in your Karma configuration, before mocha:

module.exports = function(config) {
  config.set({
    frameworks: ['mocha-given', 'mocha']
  });
}

If using coffeescript to make the tests ready more like feature files, don't forget to use the Karma preprocessor:

preprocessors: {
    '**/*.coffee': ['coffee']
},