Updating source and standalone distribution to 2.0.1
This commit is contained in:
@@ -976,7 +976,7 @@ getJasmineRequireObj().Clock = function() {
|
||||
}
|
||||
|
||||
function argSlice(argsObj, n) {
|
||||
return Array.prototype.slice.call(argsObj, 2);
|
||||
return Array.prototype.slice.call(argsObj, n);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1869,7 +1869,7 @@ getJasmineRequireObj().matchersUtil = function(j$) {
|
||||
}
|
||||
return false;
|
||||
}
|
||||
return haystack.indexOf(needle) >= 0;
|
||||
return !!haystack && haystack.indexOf(needle) >= 0;
|
||||
},
|
||||
|
||||
buildFailureMessage: function() {
|
||||
@@ -2512,5 +2512,5 @@ getJasmineRequireObj().toThrowError = function(j$) {
|
||||
};
|
||||
|
||||
getJasmineRequireObj().version = function() {
|
||||
return '2.0.0';
|
||||
return '2.0.1';
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user