诺克:有没有办法得到一份不满意的名单?

时间:2017-01-25 17:11:51

标签: node.js mocking tdd nock

我想要这样的代码:

describe('populate', function() {
    it('should grab ', function() {
        nock('http://someapi.com')
            .post('/attractions')
            .reply(200, [])

        return request
          .post('http://someapi.com/wrong')
          .send({destId: id})
          .catch(() => 
            expect(nock.unsatisfaedMocks()).is.eql(['http://someapi.com/wrong'])
          )
    })
})

有可能吗?

0 个答案:

没有答案