1.1.0 • Published 8 years ago
chai-hiff v1.1.0
Chai Hiff
HTML matching assertions for Chai.js.
Installation
npm i --save-dev chai-hiffimport 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>');