Jasmine'in toThrow eşleştiricisini, istisnanın name özelliğiyle veya message özelliğiyle eşleştirmenize izin veren aşağıdakilerle değiştiriyorum. Benim için bu, aşağıdakileri yapabileceğim için testlerin yazılmasını ve daha az kırılgan olmasını sağlar:
throw {
name: "NoActionProvided",
message: "Please specify an 'action' property when configuring the action map."
}
ve ardından aşağıdakileri test edin:
expect (function () {
.. do something
}).toThrow ("NoActionProvided");
Bu, önemli mesajı beklenen istisna türünü atması durumunda, istisna mesajını daha sonra testleri kırmadan değiştirmeme izin veriyor.
Bu, aşağıdakilere izin veren toThrow'un yerine geçer:
jasmine.Matchers.prototype.toThrow = function(expected) {
var result = false;
var exception;
if (typeof this.actual != 'function') {
throw new Error('Actual is not a function');
}
try {
this.actual();
} catch (e) {
exception = e;
}
if (exception) {
result = (expected === jasmine.undefined || this.env.equals_(exception.message || exception, expected.message || expected) || this.env.equals_(exception.name, expected));
}
var not = this.isNot ? "not " : "";
this.message = function() {
if (exception && (expected === jasmine.undefined || !this.env.equals_(exception.message || exception, expected.message || expected))) {
return ["Expected function " + not + "to throw", expected ? expected.name || expected.message || expected : " an exception", ", but it threw", exception.name || exception.message || exception].join(' ');
} else {
return "Expected function to throw an exception.";
}
};
return result;
};
Function.bind
: stackoverflow.com/a/13233194/294855