45

如果满足以下两个期望之一,我需要将测试设置为成功:

expect(mySpy.mostRecentCall.args[0]).toEqual(jasmine.any(Number));
expect(mySpy.mostRecentCall.args[0]).toEqual(false);

我希望它看起来像这样:

expect(mySpy.mostRecentCall.args[0]).toEqual(jasmine.any(Number)).or.toEqual(false);

我在文档中遗漏了什么还是我必须编写自己的匹配器?

4

4 回答 4

68

将多个可比较的字符串添加到一个数组中,然后进行比较。颠倒比较顺序。

expect(["New", "In Progress"]).toContain(Status);
于 2017-02-18T16:42:35.210 回答
19

这是一个老问题,但如果有人还在寻找我还有另一个答案。

如何构建逻辑 OR 表达式并期待它?像这样:

var argIsANumber = !isNaN(mySpy.mostRecentCall.args[0]);
var argIsBooleanFalse = (mySpy.mostRecentCall.args[0] === false);

expect( argIsANumber || argIsBooleanFalse ).toBe(true);

这样,您可以显式测试/预期 OR 条件,您只需要使用 Jasmine 来测试布尔匹配/不匹配。将在 Jasmine 1 或 Jasmine 2 中工作 :)

于 2016-05-13T00:48:49.807 回答
12

注意:此解决方案包含 Jasmine v2.0 之前版本的语法。有关自定义匹配器的更多信息,请参阅:https ://jasmine.github.io/2.0/custom_matcher.html


Matchers.js 仅适用于单个“结果修饰符” - not

核心/Spec.js:

jasmine.Spec.prototype.expect = function(actual) {
  var positive = new (this.getMatchersClass_())(this.env, actual, this);
  positive.not = new (this.getMatchersClass_())(this.env, actual, this, true);
  return positive;

核心/Matchers.js:

jasmine.Matchers = function(env, actual, spec, opt_isNot) {
  ...
  this.isNot = opt_isNot || false;
}
...
jasmine.Matchers.matcherFn_ = function(matcherName, matcherFunction) {
  return function() {
    ...
    if (this.isNot) {
      result = !result;
    }
  }
}

所以看起来你确实需要编写自己的匹配器(从 abeforeitbloc 中表示正确this)。例如:

this.addMatchers({
   toBeAnyOf: function(expecteds) {
      var result = false;
      for (var i = 0, l = expecteds.length; i < l; i++) {
        if (this.actual === expecteds[i]) {
          result = true;
          break;
        }
      }
      return result;
   }
});
于 2012-11-23T14:09:19.000 回答
0

您可以将比较从 expect 语句中取出,以充分利用比较运算符。

let expectResult = (typeof(await varA) == "number" || typeof(await varA) == "object" );
expect (expectResult).toBe(true);

于 2020-04-08T01:32:06.403 回答