From 1f1e1ec7c94e656d2fb05a70378fa5fefbb253f5 Mon Sep 17 00:00:00 2001 From: Michel Kaporin Date: Wed, 7 Jun 2017 17:07:12 +0200 Subject: [PATCH] Pass the argument to the VS Code executable, instead of a chrome driver. --- test/smoke/src/tests/extensions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/smoke/src/tests/extensions.ts b/test/smoke/src/tests/extensions.ts index 9e563f2f3c1..b4514372569 100644 --- a/test/smoke/src/tests/extensions.ts +++ b/test/smoke/src/tests/extensions.ts @@ -24,7 +24,7 @@ export async function testExtensions() { let extensions: Extensions; beforeEach(async function () { - app = new SpectronApplication(LATEST_PATH, this.currentTest.fullTitle(), (this.currentTest as any).currentRetry(), [WORKSPACE_PATH], [`--extensions-dir=${EXTENSIONS_DIR}`]); + app = new SpectronApplication(LATEST_PATH, this.currentTest.fullTitle(), (this.currentTest as any).currentRetry(), [WORKSPACE_PATH, `--extensions-dir=${EXTENSIONS_DIR}`]); common = new CommonActions(app); extensions = new Extensions(app, common); await common.removeDirectory(EXTENSIONS_DIR);