Files
30-seconds-of-code/test/mapValues/mapValues.test.js
2018-01-15 10:58:44 -05:00

13 lines
480 B
JavaScript

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