Fixed throwUnlessAsync

Fixes #2026
This commit is contained in:
Steve Gravrock
2024-02-05 18:49:19 -08:00
parent 726c152f6e
commit 03098e81f8
5 changed files with 6 additions and 6 deletions

View File

@@ -246,7 +246,7 @@ getJasmineRequireObj().interface = function(jasmine, env) {
* @return {matchers}
*/
throwUnlessAsync: function(actual) {
return env.throwUnless(actual);
return env.throwUnlessAsync(actual);
},
/**