1.0.0 • Published 7 years ago

karma-power-assert v1.0.0

Weekly downloads
248
License
MIT
Repository
github
Last release
7 years ago

karma-power-assert

npm version npm downloads

js-standard-style Standard Version

Build Status Dependency Status devDependency Status

Adapter for power-assert assertion library.

Installation

via npm

$ npm install karma-power-assert --save-dev

Instructions on how to install karma can be found here.

Configuration

Following code shows the default configuration...

// karma.conf.js
module.exports = function(config) {
  config.set({
    frameworks: ['mocha', 'power-assert'],

    files: [
      '*.js'
    ],

    preprocessors: {
      'test/**/*.spec.js': ['espower']
    }
  });
};

If you want to pass configuration options directly to assert.customize you can do this in the following way

// karma.conf.js
module.exports = function(config) {
  config.set({
    frameworks: ['mocha', 'power-assert'],

    files: [
      '*.js'
    ],

    preprocessors: {
      'test/**/*.spec.js': ['espower']
    },

    client: {
      assert: {
        output: {
          maxDepth: 2
        }
      }
    }
  });
};

For more information on Karma see the homepage.