gpt4 book ai didi

javascript - 如何使用 POSTMAN 测试某物是否大于某个数字

转载 作者:数据小太阳 更新时间:2023-10-29 04:03:25 25 4
gpt4 key购买 nike

我正在尝试在 POSTMAN 中进行测试,其中大小必须大于 0,但我无法正确进行测试。

我做的是让它在尺寸小于0时失败。

postman有没有检查大小是否大于x个数的函数?

    pm.test("Step 7/ Getting the resources and availabilites list " , function(){

pm.expect(pm.response.code).to.be.oneOf([200]);
if(pm.response.code === 200){
var jsonData = JSON.parse(responseBody);
var sizeOK= 1;
if(jsonData.resources.length>0){

}else{
//I will make the test fail if there is not data available on the response.
pm.test("Response body is empty ", function () {
pm.expect(pm.response.json().resources.length).to.equal(1);
});

}
console.log(Boolean(jsonData.resources.length>1))
}

});

最佳答案

pm.expect(pm.response.json().resources.length).to.be.above(0);

参见 http://www.chaijs.com/api/bdd/

关于javascript - 如何使用 POSTMAN 测试某物是否大于某个数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47385993/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com