diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a6dbe55f..be105574 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: true matrix: - VSCODE_VERSION: ['latest', 'minimum'] + VSCODE_VERSION: ['stable', 'minimum'] experimental: [false] include: - VSCODE_VERSION: 'insiders' @@ -46,7 +46,6 @@ jobs: sleep 3 npm test env: - TESTMATE_DEBUG: true DISPLAY: ':99.0' test-windows: @@ -55,7 +54,7 @@ jobs: strategy: fail-fast: true matrix: - VSCODE_VERSION: ['latest', 'minimum'] + VSCODE_VERSION: ['stable', 'minimum'] experimental: [false] include: - VSCODE_VERSION: 'insiders' @@ -83,8 +82,6 @@ jobs: - name: Test run: npm test - env: - TESTMATE_DEBUG: true test-mac: name: MacOS @@ -92,7 +89,7 @@ jobs: strategy: fail-fast: true matrix: - VSCODE_VERSION: ['latest', 'minimum'] + VSCODE_VERSION: ['stable', 'minimum'] experimental: [false] include: - VSCODE_VERSION: 'insiders' diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a025ed2a..d47ed4ed 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -81,6 +81,10 @@ If you think your changes worth of a release add a new version entry to `CHANGEL - https://code.visualstudio.com/api/working-with-extensions/publishing-extension - https://matepek.visualstudio.com/_usersSettings/tokens +## VSCode API + +https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.d.ts + ## VSCODE TESTING API ### TODOs diff --git a/test/runTests.ts b/test/runTests.ts index 7729fd4a..1949f120 100644 --- a/test/runTests.ts +++ b/test/runTests.ts @@ -23,11 +23,7 @@ async function main(): Promise { console.log('Working directory has been created', testWorkspace); const version = - process.env['VSCODE_VERSION'] === 'latest' - ? undefined - : process.env['VSCODE_VERSION'] === 'minimum' - ? getMinimumSupportedVersion() - : process.env['VSCODE_VERSION']; + process.env['VSCODE_VERSION'] === 'minimum' ? getMinimumSupportedVersion() : process.env['VSCODE_VERSION']; await runTests({ version,