From 617633cb5c05a582e9edfd7eab95bc85f1b56e10 Mon Sep 17 00:00:00 2001 From: Romain Tetley Date: Wed, 24 Jan 2024 16:12:53 +0100 Subject: [PATCH] Revert runTest --- client/src/test/runTest.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/client/src/test/runTest.ts b/client/src/test/runTest.ts index 1df2b31cd..29a60b7ab 100644 --- a/client/src/test/runTest.ts +++ b/client/src/test/runTest.ts @@ -37,8 +37,12 @@ async function main() { const launchArgs = [path.resolve(__dirname, '../../testFixture'), "--disable-extensions", "--user-data-dir=" + userDataDir]; // Download VS Code, unzip it and run the integration test - const vscodeExecutablePath = await downloadAndUnzipVSCode('1.84.0'); - await runTests({ vscodeExecutablePath, extensionDevelopmentPath, extensionTestsPath, launchArgs }); + //const vscodeExecutablePath = await downloadAndUnzipVSCode('1.84.0'); + await runTests({ + // vscodeExecutablePath, + extensionDevelopmentPath, + extensionTestsPath, + launchArgs }); } catch (err) { console.error('Failed to run tests'); process.exit(1);