UNPKG

testdouble

Version:

A minimal test double library for TDD with JavaScript

11 lines (9 loc) 222 B
import _ from '../../wrap/lodash' import create from '../create' export default create({ name: 'not', matches (matcherArgs, actual) { const expected = matcherArgs[0] return !_.isEqual(expected, actual) } })