Files
30-seconds-of-code/test/toCamelCase/toCamelCase.test.js
2018-01-09 06:09:49 -05:00

13 lines
498 B
JavaScript

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