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