From e3fc90abda0ae6b813ad4d1a276aa3b779427006 Mon Sep 17 00:00:00 2001 From: Alena Khineika Date: Thu, 15 Jun 2023 17:45:46 +0200 Subject: [PATCH 1/4] test: run nightly tests against latest vscode VSCODE-340 --- src/test/runTest.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/runTest.ts b/src/test/runTest.ts index 15383d9a9..4a483be4a 100644 --- a/src/test/runTest.ts +++ b/src/test/runTest.ts @@ -17,6 +17,7 @@ async function main(): Promise { // Download VS Code, unzip it and run the integration test await runTests({ + version: 'stable', extensionDevelopmentPath, extensionTestsPath, launchArgs: [testWorkspace, '--disable-extensions'], From 24d619df7db1bd01c2547d8d5f625f3a80cc449e Mon Sep 17 00:00:00 2001 From: Alena Khineika Date: Thu, 15 Jun 2023 17:48:40 +0200 Subject: [PATCH 2/4] docs: add comment --- src/test/runTest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/runTest.ts b/src/test/runTest.ts index 4a483be4a..adf59a520 100644 --- a/src/test/runTest.ts +++ b/src/test/runTest.ts @@ -17,7 +17,7 @@ async function main(): Promise { // Download VS Code, unzip it and run the integration test await runTests({ - version: 'stable', + version: 'stable', // Download latest stable release. extensionDevelopmentPath, extensionTestsPath, launchArgs: [testWorkspace, '--disable-extensions'], From 3d25779d45b9379823a3ae6552b081632fedb29f Mon Sep 17 00:00:00 2001 From: Alena Khineika Date: Thu, 15 Jun 2023 17:50:08 +0200 Subject: [PATCH 3/4] docs: update comment --- src/test/runTest.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/test/runTest.ts b/src/test/runTest.ts index adf59a520..03d83a189 100644 --- a/src/test/runTest.ts +++ b/src/test/runTest.ts @@ -17,7 +17,9 @@ async function main(): Promise { // Download VS Code, unzip it and run the integration test await runTests({ - version: 'stable', // Download latest stable release. + // Download latest stable release. + // Might be different from the vscode engine specified in package.json + version: 'stable', extensionDevelopmentPath, extensionTestsPath, launchArgs: [testWorkspace, '--disable-extensions'], From 67c6f22633b06a0af20b48439d7f9a1d14f41a30 Mon Sep 17 00:00:00 2001 From: Alena Khineika Date: Thu, 15 Jun 2023 21:54:46 +0200 Subject: [PATCH 4/4] test: run agains insiders --- src/test/runTest.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/test/runTest.ts b/src/test/runTest.ts index 03d83a189..b9d5c3d1b 100644 --- a/src/test/runTest.ts +++ b/src/test/runTest.ts @@ -17,9 +17,7 @@ async function main(): Promise { // Download VS Code, unzip it and run the integration test await runTests({ - // Download latest stable release. - // Might be different from the vscode engine specified in package.json - version: 'stable', + version: 'insiders', // Download latest insiders. extensionDevelopmentPath, extensionTestsPath, launchArgs: [testWorkspace, '--disable-extensions'],