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

Commit

Permalink
fix(launcher): resolve promise for getMultiCapabilities (#3195)
Browse files Browse the repository at this point in the history
closes #3191
  • Loading branch information
mdasberg authored and cnishina committed May 6, 2016
1 parent 9177dca commit f205518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/launcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ let initFn = function(configFile: string, additionalConfig: Config) {
q.when(config.getMultiCapabilities(), (multiCapabilities) => {
config.multiCapabilities = multiCapabilities;
config.capabilities = null;
}).then((resolve) => {});
}).then(resolve);
} else {
resolve();
}
Expand Down

1 comment on commit f205518

@martin770
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! This was working in protractor 3.2.2, but broke in 3.3.0. It appears to be working again as of version 4.0.0.

Please sign in to comment.