Skip to content

hurrymaplelad/chai-colors

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

chai-colors

Color assertions for chai. Thin wrapper around onecolor.

NPM version Build Status

Compare different color representations:

'rgba(0, 0, 0, 1)'.should.be.colored('#000000');

Combine with webdriver for more fun:

browser
  .elementByCss('code .hljs-keyword')
  .getComputedCss('color').should.eventually.be.colored('mintcream')

Installation

This is a addon plugin for the Chai Assertion Library. Install via npm.

npm install chai-colors

Plugin

Use this plugin as you would all other Chai plugins.

var chai = require('chai')
  , chaiColors = require('chai-colors');

chai.use(chaiColors);

Supported Formats

See the onecolor API.

About

Color assertions for chai

Resources

Stars

Watchers

Forks

Packages

No packages published