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