Skip to content

Commit df5dccc

Browse files
committed
'Pin' to stable instead
1 parent 3207c59 commit df5dccc

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

extensions/ql-vscode/src/vscode-tests/run-integration-tests.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,14 @@ type Suite = {
1313
};
1414

1515
// 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';
16+
// 'insiders' or an explicit version number. See runTest.d.ts in
17+
// 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';
1824

1925
/**
2026
* Run an integration test suite `suite`, retrying if it segfaults, at

0 commit comments

Comments
 (0)