我正在尝试在mocha中测试 POST 请求的响应。请求正文包含字段名称,电话号码和徽标(图像)。 但是我得到了400作为回复。在这里附上我的测试代码片段。
var sample_company = {"name": "Test_company",
"phoneNumber": '+123456741538'
};
it('company registartion', function(done){
request(app)
.post('/companies')
.set({apikey: 'TestHashKey',headers: headers})
.type('form')
.send(sample_company)
.attach('log', "http://atomhouse.com/wp-content/uploads/2014/04/TWNEL.png")
.expect(200)
.end(function(err,res) {
if (err) throw err;
done();
});
});