karma-chai-as-promised

Chai-as-promised plugin for karma

Usage no npm install needed!

<script type="module">
  import karmaChaiAsPromised from 'https://cdn.skypack.dev/karma-chai-as-promised';
</script>

README

karma-chai-as-promised

NPM version Dependency Status

chai-as-promised plugin for karma

Installation

$ npm install karma-chai-as-promised --save-dev

Requirements

This plugin has two peerDependencies with * requirement versions:

Karma and Chai versions will be resolved by these plug-ins respectively

Usage

Add chai-as-promised to the frameworks array in your Karma configuration:

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

Keep in mind that, since Karma loads its frameworks in reverse and chai-as-promised depends on chai, you should declare it accordingly as done above.

License

MIT