[go: nahoru, domu]

Skip to content

Commit

Permalink
Remove autoselect chrome option.
Browse files Browse the repository at this point in the history
  • Loading branch information
samccone committed May 15, 2017
1 parent 3f6f0bd commit 9cfb05e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions chrome-launcher/chrome-launcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ type SupportedPlatforms = 'darwin'|'linux'|'win32';
export interface Options {
startingUrl?: string;
chromeFlags?: Array<string>;
autoSelectChrome?: boolean;
port?: number;
handleSIGINT?: boolean;
}
Expand Down Expand Up @@ -65,7 +64,6 @@ export async function launch(opts: Options = {}): Promise<LaunchedChrome> {
class ChromeLauncher {
private tmpDirandPidFileReady = false;
pollInterval: number = 500;
autoSelectChrome: boolean;
TMP_PROFILE_DIR: string;
outFile?: number;
errFile?: number;
Expand All @@ -77,7 +75,6 @@ class ChromeLauncher {

constructor(opts: Options = {}) {
// choose the first one (default)
this.autoSelectChrome = defaults(opts.autoSelectChrome, true);
this.startingUrl = defaults(opts.startingUrl, 'about:blank');
this.chromeFlags = defaults(opts.chromeFlags, []);
this.port = defaults(opts.port, 0);
Expand Down

0 comments on commit 9cfb05e

Please sign in to comment.