Skip to content

Commit

Permalink
Generate combined file with new version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregg Van Hove committed Feb 6, 2018
1 parent 9911d37 commit 4530f94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/jasmine-core/jasmine-html.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down
2 changes: 1 addition & 1 deletion lib/jasmine-core/jasmine.js
Original file line number Diff line number Diff line change
Expand Up @@ -5580,5 +5580,5 @@ getJasmineRequireObj().UserContext = function(j$) {
};

getJasmineRequireObj().version = function() {
return '2.9.1';
return '2.99.0';
};

0 comments on commit 4530f94

Please sign in to comment.