Skip to content

Commit e0d2e53

Browse files
committed
Pass web opt through
1 parent 88c8745 commit e0d2e53

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

test/smoke/src/application.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ export class Application {
125125
verbose: this.options.verbose,
126126
log: this.options.log,
127127
extraArgs,
128-
remote: this.options.remote
128+
remote: this.options.remote,
129+
web: this.options.web
129130
});
130131

131132
this._workbench = new Workbench(this._code, this.userDataPath);

test/smoke/src/main.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,8 @@ function createOptions(): ApplicationOptions {
212212
verbose: opts.verbose,
213213
log,
214214
screenshotsPath,
215-
remote: opts.remote
215+
remote: opts.remote,
216+
web: opts.web
216217
};
217218
}
218219

test/smoke/src/vscode/puppeteer-driver.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,6 @@ let args;
319319
export function launch(_args): void {
320320
args = _args;
321321
// TODO: Move puppeteer launch here
322-
console.log(args);
323322
}
324323

325324
export function connect(outPath: string, handle: string): Promise<{ client: IDisposable, driver: IDriver }> {

0 commit comments

Comments
 (0)