We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3207c59 commit df5dcccCopy full SHA for df5dccc
1 file changed
extensions/ql-vscode/src/vscode-tests/run-integration-tests.ts
@@ -13,8 +13,14 @@ type Suite = {
13
};
14
15
// Which version of vscode to test against. Can set to 'stable' or
16
-// 'insiders'. See runTest.d.ts in vscode-test for more details.
17
-const VSCODE_VERSION = '1.46.0';
+// 'insiders' or an explicit version number. See runTest.d.ts in
+// vscode-test for more details.
18
+
19
+// For CI purposes we want to leave this at 'stable' to catch any bugs
20
+// that might show up with new vscode versions released, even though
21
+// this makes testing not-quite-pure, but it can be changed for local
22
+// testing against old versions if necessary.
23
+const VSCODE_VERSION = 'stable';
24
25
/**
26
* Run an integration test suite `suite`, retrying if it segfaults, at
0 commit comments