Files
30-seconds-of-code/test/isUndefined/isUndefined.test.js
2018-01-17 13:40:40 -05:00

13 lines
498 B
JavaScript

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