'Pin' to stable instead

This commit is contained in:
Jason Reed
2020-07-10 08:59:23 -04:00
parent 3207c594e7
commit df5dccc3f6

View File

@@ -13,8 +13,14 @@ type Suite = {
}; };
// Which version of vscode to test against. Can set to 'stable' or // Which version of vscode to test against. Can set to 'stable' or
// 'insiders'. See runTest.d.ts in vscode-test for more details. // 'insiders' or an explicit version number. See runTest.d.ts in
const VSCODE_VERSION = '1.46.0'; // 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 * Run an integration test suite `suite`, retrying if it segfaults, at