7 lines
167 B
JavaScript
7 lines
167 B
JavaScript
const expect = require('expect');
|
|
const {heronArea} = require('./_30s.js');
|
|
|
|
test('heronArea is a Function', () => {
|
|
expect(heronArea).toBeInstanceOf(Function);
|
|
});
|