0
私はchaiの期待通りにsupertest-as-promisedを使用しようとしています。テストは次のように行く必要があります。いくつかのJSONにfoos
エンドポイントを投稿し、回答者の身体は、2supertest-as-promisedとchai
it('should fail', function(){
var agent = request(app)
agent
.post('/foos')
.send({
// some JSON
})
.then(function(){
agent.get('/bars').then(function(res){
console.log(res);
expect(res).to.have.deep.property('body.data').and.have.property('length').and.equal(3)
})
})
})
にconsole.logは実行されず、テストはどんな通過しないの長さを持っているbars
エンドポイントを呼び出します私は平等に書く。