作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前,如果 expect()
失败,测试将继续执行。这会导致抛出异常并导致构建崩溃(在示例中)。
使用 "stopSpecOnExpectationFailure": true
会导致整个规范在第一次 expect()
失败时停止执行。
有没有办法在 jasmine 继续执行规范中的其余 it()
函数时停止执行并使当前的 it()
失败?
我正在寻找一种方法来完成下面的示例。
示例:
it('should fail and stop on first expect', function() {
var test;
expect(test).toBeDefined(); //fail test and stop execution of this it() only.
test.body; //stopping would prevent an exception being thrown
});
it('should run this test still', function() {
expect(true).toBe(true);
});
最佳答案
Jasmine 的工作方式并不像测试子句所期望的那样。它不会为您提供分支或条件功能。
您真正唯一明智的做法是:
expect(test).toBeDefined(); //fail test and stop execution of this it() only.
if (test) {
test.body; //stopping would prevent an exception being thrown
}
如果测试不存在并且不会失败,这将无法达到预期。如果是的话就会继续。就像你说的,你不想用其他 Jasmine 指令来停止一切。
您还可以使用失败语句,这可能看起来更整洁:
if (test) {
test.body
} else {
fail('Hey your test object is null!');
}
关于javascript - 因期望失败而停止当前 IT 中的执行,但继续 Jasmine 中的规范测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37441931/
我是一名优秀的程序员,十分优秀!