Files
30-seconds-of-code/test/mostPerformant/mostPerformant.test.js
2018-06-18 17:40:29 +03:00

7 lines
190 B
JavaScript

const expect = require('expect');
const mostPerformant = require('./mostPerformant.js');
test('mostPerformant is a Function', () => {
expect(mostPerformant).toBeInstanceOf(Function);
});