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