in my react-native application, I\'m trying to make fetch request with body. But, I get error message of unexpected EOF. Actually, the request is made,
body
unexpected EOF
I would say that it fails on this line: response.json() Are you sure that your response is a valid JSON?
response.json()
Try testing the response with Postman or add .catch(e => console.log(e)) before done();
.catch(e => console.log(e))
done();