Jest / Frisby - FetchError:无效的json响应体;如何记录服务器响应

时间:2018-01-11 16:03:04

标签: jestjs frisby.js

我的服务器上可能有错误,因为我是从frisby那里得到的:

FetchError: invalid json response body at ...

问题是我无法看到服务器响应,所以我无法理解出了什么问题。

如何使用Frisby记录服务器响应?我试图在然后函数中记录响应,但没有成功:

frisby.use(spec => spec.setup({ request: { headers: { 'Token': token1 } } }))
    .post(BASE_URL + 'purchase', purchase)
    .expect('status', 409)  
    .then(res => {
      console.log(res);
    })
    .done(done);

由于

0 个答案:

没有答案