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