2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-21 13:24:11 +03:00

Adding baseURL to be used in getUri(), also removing question mark trimming since there seems to be no obvious reason for it. (#3737)

Co-authored-by: Jay <jasonsaayman@gmail.com>
This commit is contained in:
sakarit
2022-03-07 20:09:23 +02:00
committed by GitHub
parent 195c8e5ff5
commit bdb7d76d40
3 changed files with 44 additions and 1 deletions
+4
View File
@@ -42,6 +42,10 @@ describe('static api', function () {
expect(typeof axios.isCancel).toEqual('function');
});
it('should have getUri method', function() {
expect(typeof axios.getUri).toEqual('function');
});
it('should have isAxiosError properties', function () {
expect(typeof axios.isAxiosError).toEqual('function');
});