Closed jay-jlm closed 4 years ago
axiosInstanceMock.onPost(/\.*/).reply(201, '{ "path": "upload_path" }');
result.data for the request above is of type object, however when using axios on the website I receive this data as a string from the server.
result.data
object
This conversion is done by a default response transformer in axios itself: https://github.com/axios/axios/blob/master/lib/defaults.js#L57-L65.
result.data
for the request above is of typeobject
, however when using axios on the website I receive this data as a string from the server.