ran npm run tester

This commit is contained in:
King
2018-01-28 14:43:35 -05:00
parent 31076c2749
commit 74bbd30419
5 changed files with 43 additions and 4 deletions

View File

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