diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53ed845f..ae62ad3b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: workflow_dispatch: env: - VSCODE_VERSION: '1.101.2' + VSCODE_VERSION: '1.103.0' jobs: lint: diff --git a/.vscode-test.cjs b/.vscode-test.cjs index e6eae409..4471365b 100644 --- a/.vscode-test.cjs +++ b/.vscode-test.cjs @@ -1,12 +1,15 @@ const { defineConfig } = require('@vscode/test-cli'); -const baseConfig = /** @type {const} */ ({ +const baseConfig = /** @type {Parameters[0]} */ ({ extensionDevelopmentPath: 'packages/vscode', version: process.env.VSCODE_VERSION ?? 'stable', mocha: { timeout: 10000, require: ['tsx/cjs', './scripts/vscode-test-setup.ts'], }, + download: { + timeout: 60_000, + }, }); module.exports = defineConfig([