mocha测试发布请求与图像字段提出错误响应400

时间:2015-10-29 06:21:33

标签: node.js jasmine mocha

我正在尝试在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();  
        });
});

0 个答案:

没有答案