Travis build: 1297 [cron]

This commit is contained in:
30secondsofcode
2018-01-17 20:11:19 +00:00
parent ff003c12a4
commit 2f29187eea
13 changed files with 1575 additions and 1370 deletions

View File

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