Files
30-seconds-of-code/test/heronArea/heronArea.test.js
2018-10-08 17:23:40 +00:00

7 lines
170 B
JavaScript

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