Files
30-seconds-of-code/test/mostPerformant.test.js
2018-10-19 20:18:00 +03:00

7 lines
182 B
JavaScript

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