test-stub
v0.0.1
Published
Test stub generator
Downloads
4
Readme
test-stub
Stub generator for tests
install
$ npm install test-stub
usage
import stub from 'test-stub';
const fn = stub(
(a, b) => a + b,
(a, b) => a * b
);
console.log(fn(1, 2)); // 3
console.log(fn(3, 4)); // 12
api
stub(...fns)
Creates a functions that calls fns[0]
on the first, fns[1]
on the second call (and so on).
license
MIT