From 1e2e138a6018563b115931790a94318108513db3 Mon Sep 17 00:00:00 2001 From: mattseddon <37993418+mattseddon@users.noreply.github.com> Date: Wed, 19 Oct 2022 06:58:05 +1100 Subject: [PATCH] Switch CI test coverage to use stable build (#2623) * check if failures relate to insiders build * fix turborepo syntax * reset activation events * add inputs to cover-vscode-run * explicitly set dependencies of cover-vscode-run * use stable build for testing --- extension/src/test/runTest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension/src/test/runTest.ts b/extension/src/test/runTest.ts index 0ed87ee3b0..a02ba61b26 100644 --- a/extension/src/test/runTest.ts +++ b/extension/src/test/runTest.ts @@ -10,7 +10,7 @@ async function main() { const extensionTestsPath = resolve(__dirname, './suite/index') - const vscodeExecutablePath = await downloadAndUnzipVSCode('insiders') + const vscodeExecutablePath = await downloadAndUnzipVSCode('stable') const workspacePath = resolve(__dirname, '../../../demo')