Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

chai-json-equal

hurrymaplelad30.1kMIT0.0.1

Assert on equality of json representations in Chai

chai, chai-plugin, browser, objects, array, plugin, assertion, json, deep, equality, fuzzy

readme

chai-json-equal

Assert on equality of json representations in Chai.

NPM version Build Status

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-equal

Plugin

Use this plugin as you would all other Chai plugins.

var chai = require('chai')
  , chaiJsonEqual = require('chai-json-equal');

chai.use(chaiJsonEqual);