12 lines
219 B
JavaScript
12 lines
219 B
JavaScript
const expect = require('expect');
|
|
const URLJoin = require('./URLJoin.js');
|
|
|
|
|
|
test('URLJoin is a Function', () => {
|
|
expect(URLJoin).toBeInstanceOf(Function);
|
|
});
|
|
t.equal(URLJoin('http:
|
|
t.equal(URLJoin('file:
|
|
|
|
|