chai-hiff
v1.1.0
Published
HTML matching assertions for Chai.js.
Downloads
17
Readme
Chai Hiff
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>');