Skip to content

Commit f2d7b57

Browse files
committed
Add test to the hover
Signed-off-by: Maxime Dufour <[email protected]>
1 parent fecb072 commit f2d7b57

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/ui-test/treeview.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -819,6 +819,17 @@ describe('ActivityBar', () => {
819819

820820
});
821821

822+
describe("Hover", async () => {
823+
let tooltip: string | undefined;
824+
before(async () => {
825+
tooltip = await resourceChildren[0].getTooltip();
826+
});
827+
828+
it("is not empty", async () => {
829+
expect(tooltip).not.empty;
830+
});
831+
});
832+
822833
describe("Filter Vms", async () => {
823834
before(async () => {
824835
// Reset the option for disable folders

0 commit comments

Comments
 (0)