英文:
How to expect an test fail if I have a test case not implemented in Postman?
问题
以下是翻译好的内容:
"我正在使用Postman编写API测试。我打算在尚未实现API时编写一个失败的测试。
我正在此刻编写这个。
pm.test("尚未实现", function () {
pm.expect(true).to.eql(false);
});
在Postman中有类似这样的功能吗?我只想要一个失败的测试。
pm.test("尚未实现", function () {
pm.expect().fail();
});"
英文:
I'm writing API testing using Postman. I plan to write a failed test when I'm not implement the API yet.
I'm writing this at this moment.
pm.test("Not implement yet", function () {
pm.expect(true).to.eql(false);
});
Is there something like this in Postman? I just want a test to be fail.
pm.test("Not implement yet", function () {
pm.expect().fail();
});
答案1
得分: 1
你可以使用 pm.expect.fail('因为...而失败');
英文:
You can use pm.expect.fail('This failed because ...');
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论