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