Skip to content

Commit 954137c

Browse files
authored
Bump extension version to v0.9.28 (#3601)
* Bump extension version to v0.9.28 * Add client test timeouts for Windows CI
1 parent 4538672 commit 954137c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ruby-lsp",
33
"displayName": "Ruby LSP",
44
"description": "VS Code plugin for connecting with the Ruby LSP",
5-
"version": "0.9.27",
5+
"version": "0.9.28",
66
"publisher": "Shopify",
77
"repository": {
88
"type": "git",

vscode/src/test/suite/testController.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ suite("TestController", () => {
450450
assert.strictEqual(filteredItems.length, 1);
451451
assert.strictEqual(filteredItems[0].id, serverTest.id);
452452
assert.strictEqual(filteredItems[0].children.length, 0);
453-
});
453+
}).timeout(20000);
454454

455455
test("only includes test file item if none of the children are excluded", async () => {
456456
await controller.testController.resolveHandler!(undefined);
@@ -480,7 +480,7 @@ suite("TestController", () => {
480480
assert.strictEqual(filteredItems[0].children.length, 0);
481481
// However, the original item should not be mutated or else it will mess up the explorer tree structure
482482
assert.strictEqual(serverTest.children.size, 2);
483-
});
483+
}).timeout(20000);
484484

485485
test("only includes test group item if none of the children are excluded", async () => {
486486
await controller.testController.resolveHandler!(undefined);

0 commit comments

Comments
 (0)