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

13 lines
480 B
JavaScript

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