如果一个Expecter在量角器中失败,规范执行会继续吗?

时间:2019-09-12 12:02:14

标签: protractor jasmine-node

我的it块中有两个“期望”,而我的第一个it块失败了,它仍然继续执行并执行我的it块中的其余代码。

我的期望是,如果首先执行该块失败,那么执行将立即在此处停止,然后执行它。

it ("My se", function() {
expect(true).toBe(false);// it is failing

//my rest of my below code should not get executed.
My functionality code
expect(array[0]).toBe("foo");

});

it ("Second it block", function() {
//Continue the execution
});

能不能帮我一些想法,我怎么能做到这一点。我对该“特定”块的执行应停止,下一次应继续。

1 个答案:

答案 0 :(得分:0)

理想情况下,期望语句应为it块的最后一条语句。您需要以这种方式更新测试以获得所需的结果。