11 lines
248 B
JavaScript
11 lines
248 B
JavaScript
const expect = require('expect');
|
|
const mostPerformant = require('./mostPerformant.js');
|
|
|
|
|
|
test('mostPerformant is a Function', () => {
|
|
expect(mostPerformant).toBeInstanceOf(Function);
|
|
});
|
|
t.pass('Tested by @chalarangelo on 16/02/2018');
|
|
|
|
|