Files
30-seconds-of-code/test/isUndefined/isUndefined.test.js
Angelos Chalaris bde73c95e8 Updated testing with proper indentation
Uses two spaces instead of hard tabs.
2018-01-24 17:53:36 +02:00

13 lines
506 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();
});