UNPKG

testdouble

Version:

A minimal test double library for TDD with JavaScript

10 lines (8 loc) 182 B
import create from '../create' export default create({ name: 'argThat', matches (matcherArgs, actual) { const predicate = matcherArgs[0] return predicate(actual) } })