応答本文が空であるかどうかをアサートしようとしていますが、エラーが発生しました:
var api = supertest(TEST_URL);
...
api.get('..')
.expect('Content-Type', /json/)
.end(function (err, res) {
if (err) {
return done(err);
}
res.should.have.status(200);
// Uncaught AssertionError: expected {} to have a property 'length'
// res.body.should.empty;
// Workaround should be used
res.text.should.eql('{}');
どうしたの?この問題を解決するにはどうすればよいですか?