Files
30-seconds-of-code/test/mapObject/mapObject.test.js
2018-01-09 06:09:49 -05:00

13 lines
480 B
JavaScript

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