Я замінюю Jasmin's ToThrow Matcher на наступний, який дозволяє вам відповідати за властивостями імені виключення або його властивістю повідомлення. Для мене це робить тести легшими для написання та менш крихкими, оскільки я можу зробити наступне:
throw {
name: "NoActionProvided",
message: "Please specify an 'action' property when configuring the action map."
}
а потім перевірити наступним чином:
expect (function () {
.. do something
}).toThrow ("NoActionProvided");
Це дозволяє мені виправити повідомлення про виключення пізніше, не порушуючи тести, коли важливо, щоб воно кинуло очікуваний тип виключення.
Це заміна на toThrow, яка дозволяє це:
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