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

13 lines
489 B
JavaScript

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