Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

Commit

Permalink
don't apply options to capabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Aug 27, 2020
1 parent 9fc3359 commit 072d7c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/launcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default class ChromeDriverLauncher {
if (isMultiremote(this.capabilities)) {
for (const cap in this.capabilities) {
if (isChrome(this.capabilities[cap].capabilities)) {
Object.assign(this.capabilities[cap].capabilities, this.options)
Object.assign(this.capabilities[cap], this.options)
}
}
} else {
Expand Down

0 comments on commit 072d7c1

Please sign in to comment.