tape-arr-not-equal

1.1.2 • Public • Published

tape-arr-not-equal

Tape extension that adds array inequality to tape.

Install

~ npm install tape-arr-not-equal

Usage

Check out tests/index.text.js

import addAssertions from 'extend-tape';
import arrNotEqual from '..';
import tape from 'tape';

const test = addAssertions(tape, {arrNotEqual});

test(`------------ tape-arr-equals module test ------------`, (swear) => {
  swear.plan(1);
  swear.comment(`---- tape-arr-equals module test: arrNotEq ----`);
  swear.arrNotEqual([0, 1, 2, 4], [0, 1, 2, 3], `different is not equal`);
});

Readme

Keywords

Package Sidebar

Install

npm i tape-arr-not-equal

Weekly Downloads

0

Version

1.1.2

License

ISC

Last publish

Collaborators

  • brwnrclse