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
I noticed this while working on something else, and am not sure the test is correct. Stashing for investigation.
- it.only('when the author uses a proxyReqDecorator', function (done) { - var app = express(); - app.use(proxy('localhost:8109', { - proxyReqBodyDecorator: function() { - return 'hey man'; - } - })); - - request(app) - .post('/headers') - .send({ - data: 'random string of words' - }) - .set('Content-Type', 'application/json') - .set('Accept', 'application/json') - .end(function (err, res) { - if (err) { throw err; } - assert(res.body.headers['content-length']); - const contentLength = res.body.headers['content-length']; - assert.equal(contentLength, 18); - done(err); - }); - }); -
The text was updated successfully, but these errors were encountered:
content-length
No branches or pull requests
I noticed this while working on something else, and am not sure the test is correct. Stashing for investigation.
The text was updated successfully, but these errors were encountered: