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

7 lines
167 B
JavaScript

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