11 lines
204 B
JavaScript
11 lines
204 B
JavaScript
const expect = require('expect');
|
|
const off = require('./off.js');
|
|
|
|
|
|
test('off is a Function', () => {
|
|
expect(off).toBeInstanceOf(Function);
|
|
});
|
|
t.pass('Tested by @chalarangelo on 16/02/2018');
|
|
|
|
|