Travis build: 2114 [cron]

This commit is contained in:
30secondsofcode
2018-05-31 21:18:41 +00:00
parent 41f0078709
commit 81c54a168a
5 changed files with 64 additions and 24 deletions

View File

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