gpt4 book ai didi

javascript - 因期望失败而停止当前 IT 中的执行,但继续 Jasmine 中的规范测试

转载 作者:行者123 更新时间:2023-12-02 14:36:06 25 4
gpt4 key购买 nike

目前,如果 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/

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