[go: nahoru, domu]

Skip to content

Commit

Permalink
Default chrome launcher to port 0.
Browse files Browse the repository at this point in the history
This enables auto port select by default.
  • Loading branch information
samccone committed May 15, 2017
1 parent cf8e7a8 commit 78d2117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chrome-launcher/chrome-launcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class ChromeLauncher {
this.autoSelectChrome = defaults(opts.autoSelectChrome, true);
this.startingUrl = defaults(opts.startingUrl, 'about:blank');
this.chromeFlags = defaults(opts.chromeFlags, []);
this.port = defaults(opts.port, 9222);
this.port = defaults(opts.port, 0);
}

private get flags() {
Expand Down

0 comments on commit 78d2117

Please sign in to comment.