File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " ruby-lsp" ,
3
3
"displayName" : " Ruby LSP" ,
4
4
"description" : " VS Code plugin for connecting with the Ruby LSP" ,
5
- "version" : " 0.9.27 " ,
5
+ "version" : " 0.9.28 " ,
6
6
"publisher" : " Shopify" ,
7
7
"repository" : {
8
8
"type" : " git" ,
Original file line number Diff line number Diff line change @@ -450,7 +450,7 @@ suite("TestController", () => {
450
450
assert . strictEqual ( filteredItems . length , 1 ) ;
451
451
assert . strictEqual ( filteredItems [ 0 ] . id , serverTest . id ) ;
452
452
assert . strictEqual ( filteredItems [ 0 ] . children . length , 0 ) ;
453
- } ) ;
453
+ } ) . timeout ( 20000 ) ;
454
454
455
455
test ( "only includes test file item if none of the children are excluded" , async ( ) => {
456
456
await controller . testController . resolveHandler ! ( undefined ) ;
@@ -480,7 +480,7 @@ suite("TestController", () => {
480
480
assert . strictEqual ( filteredItems [ 0 ] . children . length , 0 ) ;
481
481
// However, the original item should not be mutated or else it will mess up the explorer tree structure
482
482
assert . strictEqual ( serverTest . children . size , 2 ) ;
483
- } ) ;
483
+ } ) . timeout ( 20000 ) ;
484
484
485
485
test ( "only includes test group item if none of the children are excluded" , async ( ) => {
486
486
await controller . testController . resolveHandler ! ( undefined ) ;
You can’t perform that action at this time.
0 commit comments