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

13 lines
588 B
JavaScript

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