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