assert-no-diff
TypeScript icon, indicating that this package has built-in type declarations

4.1.0 • Public • Published

AssertNoDiff

Asserts the equality of JavaScript strings and objects with human-friendly, Bash-colored diffs as error messages.

test status Code Coverage install size

This library provides the JavaScript string and object diff methods of the popular diff library as assertions. The exceptions thrown by the assertions highlight the differences of the actual and expected values with human-friendly Bash-colored messages. This is useful for verifying the equality of larger strings or data structures in tests.

import * as assertNoDiff from "assert-no-diff"

// Diffs two JSON objects, comparing the fields defined on each.
// The order of fields does not matter.
assertNoDiff.json(actualJson, expectedJson)

// Asserts that two blocks of text are equal, comparing character by character.
assertNoDiff.chars(actualString, expectedString)

// Diffs two blocks of text, comparing word by word.
// Whitespace is significant.
assertNoDiff.wordsWithSpace(actualString, expectedString)

// Diffs two blocks of text, comparing line by line.
// Ignores leading and trailing whitespace.
assertNoDiff.trimmedLines(actualString, expectedString)

You can provide a custom error message as an optional third parameter.

Readme

Keywords

none

Package Sidebar

Install

npm i assert-no-diff

Weekly Downloads

779

Version

4.1.0

License

ISC

Unpacked Size

9.47 kB

Total Files

6

Last publish

Collaborators

  • kevingoslar