我需要替换 1.3 版中消失的 jasmine.addMatchers
函数。当前的 API 允许将匹配器添加到 describe
块,但我更希望能够在任何地方使用我的匹配器,而无需一次又一次地添加它们。
是否有一种全局方式可以将自己的匹配器添加到 jasmine 3.1.0?
最佳答案
https://github.com/JamieMason/add-matchers 可用于编写适用于所有 Jasmine 版本以及 Jest 的匹配器。
var addMatchers = require('add-matchers');
addMatchers({
// matcher with 0 arguments
toBeEvenNumber: function(received) {
// received : 4
return received % 2 === 0;
},
// matcher with 1 argument
toBeOfType: function(type, received) {
// type : 'Object'
// received : {}
return Object.prototype.toString.call(received) === '[object ' + type + ']';
},
// matcher with many arguments
toContainItems: function(arg1, arg2, arg3, received) {
// arg1 : 2
// arg2 : 15
// arg3 : 100
// received : [100, 14, 15, 2]
return (
received.indexOf(arg1) !== -1 &&
received.indexOf(arg2) !== -1 &&
received.indexOf(arg3) !== -1
);
}
});
关于javascript - 如何在全局范围内向 Jasmine 添加自定义匹配器?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50662097/