mirror of
https://github.com/tenrok/axios.git
synced 2026-06-17 19:21:29 +03:00
fa337332b9
* chore: small fixes to tests * feat: transitional move to vitests * feat: moving unit tests in progress * feat: moving more unit tests over * feat: more tests moved * feat: updated more sections of the http test * chore: wip http tests * chore: wip http tests * chore: more http tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: tests * chore: remove un-needed docs * chore: update package lock * chore: update lock
25 lines
952 B
JavaScript
25 lines
952 B
JavaScript
/* eslint-env mocha */
|
|
import combineURLs from '../../../lib/helpers/combineURLs';
|
|
|
|
describe('helpers::combineURLs', function () {
|
|
it('should combine URLs', function () {
|
|
expect(combineURLs('https://api.github.com', '/users')).toBe('https://api.github.com/users');
|
|
});
|
|
|
|
it('should remove duplicate slashes', function () {
|
|
expect(combineURLs('https://api.github.com/', '/users')).toBe('https://api.github.com/users');
|
|
});
|
|
|
|
it('should insert missing slash', function () {
|
|
expect(combineURLs('https://api.github.com', 'users')).toBe('https://api.github.com/users');
|
|
});
|
|
|
|
it('should not insert slash when relative url missing/empty', function () {
|
|
expect(combineURLs('https://api.github.com/users', '')).toBe('https://api.github.com/users');
|
|
});
|
|
|
|
it('should allow a single slash for relative url', function () {
|
|
expect(combineURLs('https://api.github.com/users', '/')).toBe('https://api.github.com/users/');
|
|
});
|
|
});
|