File tree Expand file tree Collapse file tree 6 files changed +13
-5
lines changed
tests/test-project/src/test Expand file tree Collapse file tree 6 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 17
17
strategy :
18
18
fail-fast : false
19
19
matrix :
20
- version : [ min, 1.87.2 , max ]
20
+ version : [ min, 1.88.1 , max ]
21
21
uses : ./.github/workflows/template-main.yaml
22
22
with :
23
23
version : ${{ matrix.version }}
Original file line number Diff line number Diff line change 8
8
<a href =" https://www.npmjs.com/package/@redhat-developer/page-objects " ><img src =" https://img.shields.io/npm/v/@redhat-developer/page-objects?color=orange&label=page%20objects&style=for-the-badge&logo=npm " alt =" ExTester Page Objects " /></a >
9
9
<a href =" https://github.com/redhat-developer/vscode-extension-tester/blob/main/LICENSE " ><img src =" https://img.shields.io/badge/license-Apache%202-yellow.svg?style=for-the-badge&logo=appveyor " alt =" License " /></a >
10
10
</br >
11
- <a href =" https://code.visualstudio.com " ><img src =" https://img.shields.io/badge/VS_Code-1.88 .x-blue?style=for-the-badge&logo=visualstudiocode " alt =" Maximal supported version of VS Code " ></a >
11
+ <a href =" https://code.visualstudio.com " ><img src =" https://img.shields.io/badge/VS_Code-1.89 .x-blue?style=for-the-badge&logo=visualstudiocode " alt =" Maximal supported version of VS Code " ></a >
12
12
<a href =" https://github.com/redhat-developer/vscode-extension-tester/actions/workflows/main.yml " ><img src =" https://img.shields.io/github/actions/workflow/status/redhat-developer/vscode-extension-tester/main.yml?label=Main%20CI&style=for-the-badge&logo=githubactions " alt =" Main CI " ></a >
13
13
<a href =" https://github.com/redhat-developer/vscode-extension-tester/actions/workflows/insiders.yml " ><img src =" https://img.shields.io/github/actions/workflow/status/redhat-developer/vscode-extension-tester/insiders.yml?branch=main&label=Insider%20CI&style=for-the-badge&logo=githubactions " alt =" Insider CI " ></a >
14
14
</p ><br />
39
39
40
40
| NodeJS| Visual Studio Code| Operating System|
41
41
| --| --| --|
42
- | <table style =" text-align :center ;" > <tr ><th >18.x.x</th ><th >LTS</th ><th >Latest</th ></tr ><tr ><td >✅</td ><td >❓</td ><td >❓</td ></tr ><tr ><td colspan =" 3 " >❓ Best-effort</td ></tr > </table >| <table style =" text-align :center ;" > <tr ><th >min</th ><th >-</th ><th >max</th ></tr ><tr ><td >1.86 .x</td ><td >1.87 .x</td ><td >1.88 .x</td ></tr > </table >| <table style =" text-align :center ;" > <tr ><th >Linux</th ><th >Windows</th ><th >macOS</th ></tr ><tr ><td >✅</td ><td >✅</td ><td >⚠️</td ></tr ><tr ><td colspan =" 3 " >⚠️ [ Known Issues] ( KNOWN_ISSUES.md#macos-known-limitations-of-native-objects ) </td ></tr > </table >|
42
+ | <table style =" text-align :center ;" > <tr ><th >18.x.x</th ><th >LTS</th ><th >Latest</th ></tr ><tr ><td >✅</td ><td >❓</td ><td >❓</td ></tr ><tr ><td colspan =" 3 " >❓ Best-effort</td ></tr > </table >| <table style =" text-align :center ;" > <tr ><th >min</th ><th >-</th ><th >max</th ></tr ><tr ><td >1.87 .x</td ><td >1.88 .x</td ><td >1.89 .x</td ></tr > </table >| <table style =" text-align :center ;" > <tr ><th >Linux</th ><th >Windows</th ><th >macOS</th ></tr ><tr ><td >✅</td ><td >✅</td ><td >⚠️</td ></tr ><tr ><td colspan =" 3 " >⚠️ [ Known Issues] ( KNOWN_ISSUES.md#macos-known-limitations-of-native-objects ) </td ></tr > </table >|
43
43
44
44
#### NodeJS Support Policy
45
45
Original file line number Diff line number Diff line change 52
52
" ui-test"
53
53
],
54
54
"supportedVersions" : {
55
- "vscode-min" : " 1.86 .2" ,
56
- "vscode-max" : " 1.88.1 " ,
55
+ "vscode-min" : " 1.87 .2" ,
56
+ "vscode-max" : " 1.89.0 " ,
57
57
"nodejs" : " 18"
58
58
},
59
59
"dependencies" : {
Original file line number Diff line number Diff line change @@ -41,8 +41,12 @@ export class VariableSectionItem extends CustomTreeItem {
41
41
/**
42
42
* Get variable value tooltip.
43
43
* @returns a promise resolving to variable value tooltip string
44
+ * @deprecated For VS Code 1.89+ this method won't be working any more
44
45
*/
45
46
async getVariableValueTooltip ( ) : Promise < string > {
47
+ if ( VariableSectionItem . versionInfo . version >= '1.89.0' ) {
48
+ throw Error ( `DEPRECATED METHOD! For VS Code 1.89+ this method won't be working any more.` ) ;
49
+ }
46
50
const value = await this . findElement ( VariableSectionItem . locators . VariableSectionItem . value . constructor ) ;
47
51
return VariableSectionItem . locators . VariableSectionItem . value . tooltip ( value ) ;
48
52
}
Original file line number Diff line number Diff line change @@ -204,6 +204,9 @@ describe('Debugging', function () {
204
204
} ) ;
205
205
206
206
it ( 'VariableSectionItem.getVariableValueTooltip' , async function ( ) {
207
+ if ( VSBrowser . instance . version >= '1.89.0' ) {
208
+ this . skip ( ) ;
209
+ }
207
210
const item = await getNumVariable ( view , this . timeout ( ) - 2000 ) ;
208
211
expect ( await item ?. getVariableValueTooltip ( ) ) . equals ( '5' ) ;
209
212
} ) ;
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ describe('Settings Editor', function () {
73
73
} ) ;
74
74
75
75
it ( 'getDescription works' , async function ( ) {
76
+ setting = await editor . findSetting ( 'Title Bar Style' , 'Window' ) as ComboSetting ;
76
77
const desc = await setting . getDescription ( ) ;
77
78
expect ( desc ) . not . empty ;
78
79
} ) ;
You can’t perform that action at this time.
0 commit comments