File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ jobs:
121121 strategy :
122122 matrix :
123123 os : [ubuntu-latest, windows-latest]
124- version : ['v2.3.1 ', 'v2.3.0']
124+ version : ['v2.2.6 ', 'v2.3.3', 'v2.4 .0']
125125 env :
126126 CLI_VERSION : ${{ matrix.version }}
127127
Original file line number Diff line number Diff line change @@ -60,12 +60,6 @@ interface QueryHistoryDataProvider extends vscode.TreeDataProvider<CompletedQuer
6060 * Tree data provider for the query history view.
6161 */
6262class HistoryTreeDataProvider extends DisposableObject implements QueryHistoryDataProvider {
63- /**
64- * XXX: This idiom for how to get a `.fire()`-able event emitter was
65- * cargo culted from another vscode extension. It seems rather
66- * involved and I hope there's something better that can be done
67- * instead.
68- */
6963 private _onDidChangeTreeData = super . push ( new vscode . EventEmitter < CompletedQuery | undefined > ( ) ) ;
7064
7165 readonly onDidChangeTreeData : vscode . Event < CompletedQuery | undefined > = this
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ const _10MB = _1MB * 10;
3535
3636// CLI version to test. Hard code the latest as default. And be sure
3737// to update the env if it is not otherwise set.
38- const CLI_VERSION = process . env . CLI_VERSION || 'v2.3.1 ' ;
38+ const CLI_VERSION = process . env . CLI_VERSION || 'v2.4.0 ' ;
3939process . env . CLI_VERSION = CLI_VERSION ;
4040
4141// Base dir where CLIs will be downloaded into
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ const VSCODE_VERSION = 'stable';
2828// - minimal-workspace - Tests with a simple workspace selected upon launch.
2929// - cli-integration - Tests that require a cli to invoke actual commands
3030enum TestDir {
31- NoWorskspace = 'no-workspace' ,
32- MinimalWorskspace = 'minimal-workspace' ,
31+ NoWorksspace = 'no-workspace' ,
32+ MinimalWorksspace = 'minimal-workspace' ,
3333 CliIntegration = 'cli-integration'
3434}
3535
@@ -108,12 +108,12 @@ main();
108108
109109function getLaunchArgs ( dir : TestDir ) {
110110 switch ( dir ) {
111- case TestDir . NoWorskspace :
111+ case TestDir . NoWorksspace :
112112 return [
113113 '--disable-extensions'
114114 ] ;
115115
116- case TestDir . MinimalWorskspace :
116+ case TestDir . MinimalWorksspace :
117117 return [
118118 '--disable-extensions' ,
119119 path . resolve ( __dirname , '../../test/data' )
You can’t perform that action at this time.
0 commit comments