chai-hiff

1.1.0 • Public • Published

Chai Hiff

Build Status

HTML matching assertions for Chai.js.

Installation

npm i --save-dev chai-hiff
import chai from 'chai';
import chaiHiff from 'chai-hiff';
 
chai.use(chaiHiff);

API

.hiffEqual(expected)

Expect the expected to equal the actual.

expect('<html></html>').to.hiffEqual('<html></html>');

.not.hiffEqual(expected)

Expect the expected to not equal the actual.

expect('<html></html>').to.hiffEqual('<html></html>');

.hiff.equal(expected)

Expect the expected to equal the actual.

expect('<html></html>').to.hiff.equal('<html></html>');

.not.hiff.equal(expected)

Expect the expected to not equal the actual.

expect('<html></html>').to.not.hiff.equal('<html></html>');

Readme

Keywords

Package Sidebar

Install

npm i chai-hiff

Weekly Downloads

5

Version

1.1.0

License

MIT

Last publish

Collaborators

  • dave-irvine