mirror of
https://github.com/axios/axios.git
synced 2026-04-14 15:21:58 +08:00
* allowAbsoluteUrls * fix logic - copied from v1.x * update string * undo changes to dist/axios.js * chore: use strict equal in lib/core/buildFullPath.js --------- Co-authored-by: Jay <jasonsaayman@gmail.com>
23 lines
1.1 KiB
JavaScript
23 lines
1.1 KiB
JavaScript
var buildFullPath = require('../../../lib/core/buildFullPath');
|
|
|
|
describe('helpers::buildFullPath', function () {
|
|
it('should combine URLs when the requestedURL is relative', function () {
|
|
expect(buildFullPath('https://api.github.com', '/users')).toBe('https://api.github.com/users');
|
|
});
|
|
|
|
it('should return the requestedURL when it is absolute', function () {
|
|
expect(buildFullPath('https://api.github.com', 'https://api.example.com/users')).toBe('https://api.example.com/users');
|
|
});
|
|
|
|
it('should not combine URLs when the baseURL is not configured', function () {
|
|
expect(buildFullPath(undefined, '/users')).toBe('/users');
|
|
});
|
|
|
|
it('should combine URLs when the baseURL and requestedURL are relative', function () {
|
|
expect(buildFullPath('/api', '/users')).toBe('/api/users');
|
|
});
|
|
it('should not combine the URLs when the requestedURL is absolute, allowAbsoluteUrls is false, and the baseURL is not configured', function () {
|
|
expect(buildFullPath(undefined, 'https://api.example.com/users', false)).toBe('https://api.example.com/users');
|
|
});
|
|
});
|