Files
30-seconds-of-code/test/hz/hz.test.js
2018-04-12 20:52:50 +00:00

13 lines
425 B
JavaScript

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