Files
30-seconds-of-code/test/mostPerformant/mostPerformant.test.js
Angelos Chalaris 9a3bd8ffae Updated all, any, none
Merged them with their by counterparts.
2018-02-16 13:43:43 +02:00

15 lines
585 B
JavaScript

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