Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit e36c32a

Browse files
sgronblohankduan
authored andcommitted
fix(jasminewd): Use promise.all to combine promises and done
- Make the flow promise explicit and use promise.all to wait for both promises to be fulfilled before calling the done callback
1 parent 9e5e6c7 commit e36c32a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

jasminewd/index.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -90,16 +90,19 @@ function wrapInControlFlow(globalFn, fnName) {
9090
throw Error('Invalid # arguments (' + fn.length + ') within function "' + fnName +'"');
9191
}
9292

93-
flow.execute(function() {
93+
var flowFinished = flow.execute(function() {
9494
fn.call(jasmine.getEnv().currentSpec, function(userError) {
9595
if (userError) {
9696
asyncFnDone.reject(new Error(userError));
9797
} else {
9898
asyncFnDone.fulfill();
9999
}
100100
});
101-
return asyncFnDone.promise;
102-
}, desc_).then(seal(done), function(e) {
101+
}, desc_);
102+
103+
webdriver.promise.all([asyncFnDone, flowFinished]).then(function() {
104+
seal(done)();
105+
}, function(e) {
103106
e.stack = e.stack + '==== async task ====\n' + driverError.stack;
104107
done(e);
105108
});

0 commit comments

Comments
 (0)