Lint fixes

This commit is contained in:
Steve Gravrock
2022-02-19 12:33:19 -08:00
parent 4059ab7ba6
commit 9d9e8f0c17
3 changed files with 11 additions and 2 deletions

View File

@@ -196,7 +196,10 @@ getJasmineRequireObj().QueueRunner = function(j$) {
maybeThenable = queueableFn.fn.call(self.userContext);
if (maybeThenable && j$.isFunction_(maybeThenable.then)) {
maybeThenable.then(wrapInPromiseResolutionHandler(next), onPromiseRejection);
maybeThenable.then(
wrapInPromiseResolutionHandler(next),
onPromiseRejection
);
completedSynchronously = false;
return { completedSynchronously: false };
}