如何设置邮递员测试等于或等于

时间:2018-10-08 12:55:50

标签: testing automated-tests postman postman-collection-runner

我正在用Postman编写API测试,如果返回Number或字符串"NA",我希望它能成功。

根据我目前的理解,可以一次测试一种疾病,例如:

pm.test('Qty returned is number', () => {
  pm.expect(typeof parseInt(pm.response.json().qty)).to.be.not.equal('NaN');
});

写成两个独立的测试,一个将通过,另一个将失败。

如何将此异常编码为一个测试?

0 个答案:

没有答案