Package Exports
- chai-json-equal
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (chai-json-equal) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
chai-json-equal
Assert on equality of json representations in Chai.
var ship = "ship",
barge = {toJSON: function () {
return "ship";
}}
ship.should.jsonEqual(barge);You can also compare array members with JSON equality:
[ship].should.have.jsonEqual.members [barge]Installation
This is a plugin for the Chai Assertion Library. Install via npm.
npm install chai-json-equalPlugin
Use this plugin as you would all other Chai plugins.
var chai = require('chai')
, chaiJsonEqual = require('chai-json-equal');
chai.use(chaiJsonEqual);