Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 689 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 689 Bytes

karma-dirty-chai

for Karma

Requirements

This Karma plugin requires Karma >=0.10

Installation

Install the module via npm

$ npm install --save-dev karma-dirty-chai

Add dirty-chai to the frameworks key in your Karma configuration:

module.exports = function(config) {
  'use strict';
  config.set({
    frameworks: ['mocha', 'dirty-chai'],
    #...
  });
}

Usage

Each of the function form assertions from dirty-chai will now available in your tests using the expect or should syntax.