Merge branch 'main' into 3.99

This commit is contained in:
Steve Gravrock
2021-10-15 10:29:50 -07:00
7 changed files with 86 additions and 13 deletions

View File

@@ -1679,7 +1679,9 @@ getJasmineRequireObj().Env = function(j$) {
}
delayedExpectationResult.message +=
'Did you forget to return or await the result of expectAsync?';
'1. Did you forget to return or await the result of expectAsync?\n' +
'2. Was done() invoked before an async operation completed?\n' +
'3. Did an expectation follow a call to done()?';
topSuite.result.failedExpectations.push(delayedExpectationResult);
}
@@ -10720,5 +10722,5 @@ getJasmineRequireObj().UserContext = function(j$) {
};
getJasmineRequireObj().version = function() {
return '3.9.0';
return '3.10.0';
};

View File

@@ -4,6 +4,6 @@
#
module Jasmine
module Core
VERSION = "3.9.0"
VERSION = "3.10.0"
end
end