Merge branch '3.99' into 4.0

This commit is contained in:
Steve Gravrock
2021-10-15 10:37:51 -07:00
5 changed files with 74 additions and 7 deletions

View File

@@ -1544,7 +1544,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);
}
@@ -10132,5 +10134,5 @@ getJasmineRequireObj().UserContext = function(j$) {
};
getJasmineRequireObj().version = function() {
return '4.0.0-pre.0';
return '4.0.0-dev';
};