mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 22:41:31 +01:00
Pass web opt through
This commit is contained in:
@@ -125,7 +125,8 @@ export class Application {
|
||||
verbose: this.options.verbose,
|
||||
log: this.options.log,
|
||||
extraArgs,
|
||||
remote: this.options.remote
|
||||
remote: this.options.remote,
|
||||
web: this.options.web
|
||||
});
|
||||
|
||||
this._workbench = new Workbench(this._code, this.userDataPath);
|
||||
|
||||
@@ -212,7 +212,8 @@ function createOptions(): ApplicationOptions {
|
||||
verbose: opts.verbose,
|
||||
log,
|
||||
screenshotsPath,
|
||||
remote: opts.remote
|
||||
remote: opts.remote,
|
||||
web: opts.web
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -319,7 +319,6 @@ let args;
|
||||
export function launch(_args): void {
|
||||
args = _args;
|
||||
// TODO: Move puppeteer launch here
|
||||
console.log(args);
|
||||
}
|
||||
|
||||
export function connect(outPath: string, handle: string): Promise<{ client: IDisposable, driver: IDriver }> {
|
||||
|
||||
Reference in New Issue
Block a user