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

Commit f205518

Browse files
mdasbergcnishina
authored andcommitted
fix(launcher): resolve promise for getMultiCapabilities (#3195)
closes #3191
1 parent 9177dca commit f205518

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/launcher.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ let initFn = function(configFile: string, additionalConfig: Config) {
127127
q.when(config.getMultiCapabilities(), (multiCapabilities) => {
128128
config.multiCapabilities = multiCapabilities;
129129
config.capabilities = null;
130-
}).then((resolve) => {});
130+
}).then(resolve);
131131
} else {
132132
resolve();
133133
}

0 commit comments

Comments
 (0)