Files
30-seconds-of-code/test/zipWith/zipWith.test.js
2018-01-23 20:11:51 +00:00

13 lines
462 B
JavaScript

const test = require('tape');
const zipWith = require('./zipWith.js');
test('Testing zipWith', (t) => {
//For more information on all the methods supported by tape
//Please go to https://github.com/substack/tape
t.true(typeof zipWith === 'function', 'zipWith is a Function');
//t.deepEqual(zipWith(args..), 'Expected');
//t.equal(zipWith(args..), 'Expected');
//t.false(zipWith(args..), 'Expected');
//t.throws(zipWith(args..), 'Expected');
t.end();
});