From df5dccc3f6876ab6d8b7202242555fa91978a084 Mon Sep 17 00:00:00 2001 From: Jason Reed Date: Fri, 10 Jul 2020 08:59:23 -0400 Subject: [PATCH] 'Pin' to stable instead --- .../src/vscode-tests/run-integration-tests.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/extensions/ql-vscode/src/vscode-tests/run-integration-tests.ts b/extensions/ql-vscode/src/vscode-tests/run-integration-tests.ts index d19eb8b7e..aeb8e4351 100644 --- a/extensions/ql-vscode/src/vscode-tests/run-integration-tests.ts +++ b/extensions/ql-vscode/src/vscode-tests/run-integration-tests.ts @@ -13,8 +13,14 @@ type Suite = { }; // Which version of vscode to test against. Can set to 'stable' or -// 'insiders'. See runTest.d.ts in vscode-test for more details. -const VSCODE_VERSION = '1.46.0'; +// 'insiders' or an explicit version number. See runTest.d.ts in +// vscode-test for more details. + +// For CI purposes we want to leave this at 'stable' to catch any bugs +// that might show up with new vscode versions released, even though +// this makes testing not-quite-pure, but it can be changed for local +// testing against old versions if necessary. +const VSCODE_VERSION = 'stable'; /** * Run an integration test suite `suite`, retrying if it segfaults, at