10 lines
242 B
JavaScript
10 lines
242 B
JavaScript
const expect = require('expect');
|
|
const getURLParameters = require('./getURLParameters.js');
|
|
|
|
|
|
test('getURLParameters is a Function', () => {
|
|
expect(getURLParameters).toBeInstanceOf(Function);
|
|
});
|
|
t.deepEqual(getURLParameters('http:
|
|
|