Files
30-seconds-of-code/test/mostPerformant/mostPerformant.test.js
2018-06-18 15:54:48 +03:00

11 lines
200 B
JavaScript

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