标签: testing automated-tests postman postman-collection-runner
我正在用Postman编写API测试,如果返回Number或字符串"NA",我希望它能成功。
Number
"NA"
根据我目前的理解,可以一次测试一种疾病,例如:
pm.test('Qty returned is number', () => { pm.expect(typeof parseInt(pm.response.json().qty)).to.be.not.equal('NaN'); });
写成两个独立的测试,一个将通过,另一个将失败。
如何将此异常编码为一个测试?