2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-17 19:21:29 +03:00

Refactored project file structure to avoid circular imports; (#4220)

Co-authored-by: Jay <jasonsaayman@gmail.com>
This commit is contained in:
Dmitriy Mozgovoy
2022-03-07 09:09:43 +02:00
committed by GitHub
parent 6e63edf455
commit 170588f3d7
6 changed files with 20 additions and 16 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ describe('defaults', function () {
expect(defaults.transformRequest[0](true, headers)).toEqual('true');
expect(defaults.transformRequest[0](false, headers)).toEqual('false');
expect(defaults.transformRequest[0](null, headers)).toEqual('null');
});
});
it('should do nothing to request string', function () {
expect(defaults.transformRequest[0]('foo=bar')).toEqual('foo=bar');