bump version to 2.8.0
This commit is contained in:
@@ -93,6 +93,7 @@ var getJasmineRequireObj = (function (jasmineGlobal) {
|
||||
|
||||
getJasmineRequireObj().requireMatchers = function(jRequire, j$) {
|
||||
var availableMatchers = [
|
||||
'nothing',
|
||||
'toBe',
|
||||
'toBeCloseTo',
|
||||
'toBeDefined',
|
||||
@@ -2884,6 +2885,27 @@ getJasmineRequireObj().matchersUtil = function(j$) {
|
||||
}
|
||||
};
|
||||
|
||||
getJasmineRequireObj().nothing = function() {
|
||||
/**
|
||||
* {@link expect} nothing explicitly.
|
||||
* @function
|
||||
* @name matchers#nothing
|
||||
* @example
|
||||
* expect().nothing();
|
||||
*/
|
||||
function nothing() {
|
||||
return {
|
||||
compare: function() {
|
||||
return {
|
||||
pass: true
|
||||
};
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
return nothing;
|
||||
};
|
||||
|
||||
getJasmineRequireObj().NullDiffBuilder = function(j$) {
|
||||
return function() {
|
||||
return {
|
||||
@@ -5359,5 +5381,5 @@ getJasmineRequireObj().UserContext = function(j$) {
|
||||
};
|
||||
|
||||
getJasmineRequireObj().version = function() {
|
||||
return '2.7.0';
|
||||
return '2.8.0';
|
||||
};
|
||||
|
||||
@@ -4,6 +4,6 @@
|
||||
#
|
||||
module Jasmine
|
||||
module Core
|
||||
VERSION = "2.7.0"
|
||||
VERSION = "2.8.0"
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user