标签: postman
我不确定如何检查标头的值不为null。 我进行了测试以确保标题在其中:
pm.test("Check there is an header", function() { pm.response.to.have.header("random"); });
但是,由于每个标签的值都在变化,因此我只想确保random不为空。
答案 0 :(得分:0)
天哪! 就像pm.response.to.be.header("random").to.not.eql( null);
pm.response.to.be.header("random").to.not.eql( null);