1.1.2 • Published 9 years ago

tape-arr-not-equal v1.1.2

Weekly downloads
1
License
ISC
Repository
bitbucket
Last release
9 years ago

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`);
});
1.1.2

9 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago