Generate combined file with new version numbers

This commit is contained in:
Gregg Van Hove
2018-02-06 10:33:39 -08:00
parent 9911d37f06
commit 4530f9431f
2 changed files with 2 additions and 2 deletions

View File

@@ -368,7 +368,7 @@ jasmineRequire.HtmlReporter = function(j$) {
if (result && result.deprecationWarnings) {
for(var i = 0; i < result.deprecationWarnings.length; i++) {
var warning = result.deprecationWarnings[i].message;
if (deprecationWarnings.indexOf(warning) < 0) {
if (!j$.util.arrayContains(warning)) {
deprecationWarnings.push(warning);
}
}

View File

@@ -5580,5 +5580,5 @@ getJasmineRequireObj().UserContext = function(j$) {
};
getJasmineRequireObj().version = function() {
return '2.9.1';
return '2.99.0';
};