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

Commit

Permalink
fix(elementexplorer): element.all hangs in interactive mode
Browse files Browse the repository at this point in the history
  • Loading branch information
hankduan committed Jun 24, 2014
1 parent 041fa74 commit 48798b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/elementexplorer.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ var flowEval = function(code, context, file, callback) {
process.domain.emit('error', vmErr);
process.domain.exit();
}
return result;
return webdriver.promise.fulfilled(result);
}).then(function(res) {
if (!vmErr) {
callback(null, res);
Expand Down

0 comments on commit 48798b0

Please sign in to comment.