diff --git a/package.json b/package.json index f8470a27f..601a17c9e 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "license": "MPL-2.0", "engines": { "npm": "^7.17.0", - "vscode": "^1.50.1" + "vscode": "^1.52.0" }, "qna": "https://discuss.hashicorp.com/c/terraform-core/terraform-editor-integrations/46", "bugs": { @@ -231,7 +231,7 @@ "semver": "^7.3.5", "short-unique-id": "^3.2.3", "vscode-extension-telemetry": "^0.1.7", - "vscode-languageclient": "^7.0.0-next.12", + "vscode-languageclient": "^7.0.0", "vscode-uri": "^3.0.2", "which": "^2.0.2", "yauzl": "^2.10.0" @@ -241,7 +241,7 @@ "@types/mocha": "^8.2.2", "@types/node": "^12.12.54", "@types/openpgp": "^4.4.15", - "@types/vscode": "^1.46.0", + "@types/vscode": "^1.52.0", "@types/yauzl": "^2.9.1", "@typescript-eslint/eslint-plugin": "^3.9.0", "@typescript-eslint/parser": "^3.9.0", diff --git a/src/test/runTest.ts b/src/test/runTest.ts index 2cd0ab328..5184dca20 100644 --- a/src/test/runTest.ts +++ b/src/test/runTest.ts @@ -26,20 +26,24 @@ async function main(): Promise { // Download VS Code, unzip it and run the integration test // start in the fixtures folder to prevent the language server from walking all the // project root folders, like node_modules - await runTests({ extensionDevelopmentPath, extensionTestsPath, launchArgs: ['testFixture', '--disable-extensions'] }); // use current release + await runTests({ + extensionDevelopmentPath, + extensionTestsPath, + launchArgs: ['testFixture', '--disable-extensions'], + }); // use current release await runTests({ extensionDevelopmentPath, extensionTestsPath, version: 'insiders', - launchArgs: ['testFixture', '--disable-extensions'] + launchArgs: ['testFixture', '--disable-extensions'], }); await runTests({ extensionDevelopmentPath, extensionTestsPath, - version: '1.50.1', - launchArgs: ['testFixture', '--disable-extensions'] + version: '1.52.0', + launchArgs: ['testFixture', '--disable-extensions'], }); } catch (err) { console.error(err); @@ -48,4 +52,4 @@ async function main(): Promise { } } -main(); \ No newline at end of file +main();