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

13
test/is/is.test.js Normal file
View File

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