Skip to content

Commit

Permalink
Add test to the hover
Browse files Browse the repository at this point in the history
Signed-off-by: Maxime Dufour <[email protected]>
  • Loading branch information
outscale-mdr committed Apr 23, 2024
1 parent fecb072 commit f2d7b57
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/ui-test/treeview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -819,6 +819,17 @@ describe('ActivityBar', () => {

});

describe("Hover", async () => {
let tooltip: string | undefined;
before(async () => {
tooltip = await resourceChildren[0].getTooltip();
});

it("is not empty", async () => {
expect(tooltip).not.empty;
});
});

describe("Filter Vms", async () => {
before(async () => {
// Reset the option for disable folders
Expand Down

0 comments on commit f2d7b57

Please sign in to comment.