Make the check for pending spec exception work for values that don't have toString
This commit is contained in:
@@ -141,7 +141,7 @@ getJasmineRequireObj().Spec = function(j$) {
|
||||
Spec.pendingSpecExceptionMessage = "=> marked Pending";
|
||||
|
||||
Spec.isPendingSpecException = function(e) {
|
||||
return e.toString().indexOf(Spec.pendingSpecExceptionMessage) !== -1;
|
||||
return !!(e && e.toString && e.toString().indexOf(Spec.pendingSpecExceptionMessage) !== -1);
|
||||
};
|
||||
|
||||
return Spec;
|
||||
|
||||
Reference in New Issue
Block a user