1.0.2 • Published 8 years ago

karma-tinycolor v1.0.2

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

karma-tinycolor

TinyColor for Karma

Installation

Install the plugin from npm:

$ npm install karma-tinycolor --save-dev

Or from Github:

$ npm install 'git+https://github.com/CupOfTea696/karma-tinycolor.git' --save-dev

Instructions on how to install karma can be found here

Configuration

In your Karma configuration:

  • add require('karma-tinycolor') to the plugins list, and
  • add tinycolor to the frameworks key
// karma.conf.js
module.exports = function(config) {
  config.set({
    frameworks: ['tinycolor', ... ],
    
        .
        .
        .
  });
};

Usage

This karma plugin simply loads and installs the global tinycolor namespace object.

License

The MIT License (MIT)