We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example, the snippet below fails due to the response not being interpreted as JSON.
return chakram.post(apiUrl, photo, { json: false }) .then(function(postResponse) { expect(postResponse).to.have.json(imageUrl); });
The text was updated successfully, but these errors were encountered:
This is to be expected as documented at https://dareid.github.io/chakram/jsdoc/global.html and https://github.com/request/request#requestoptions-callback. You should parse the body yourself.
Sorry, something went wrong.
No branches or pull requests
For example, the snippet below fails due to the response not being interpreted as JSON.
The text was updated successfully, but these errors were encountered: