Skip to content

Commit

Permalink
Merge branch 'master' into vibe3
Browse files Browse the repository at this point in the history
  • Loading branch information
talkor authored Nov 7, 2024
2 parents 19c3a36 + 055a473 commit 3cc2252
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/testkit/__TESTS__/dropdown.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { test, expect } from "@playwright/test";
import { Dropdown } from "../inputs/Dropdown";
import { dropdownStory } from "./utils/url-helper";


test.describe("dropdown Class with Storybook", () => {
let DropDown;

Expand All @@ -13,9 +12,10 @@ test.describe("dropdown Class with Storybook", () => {
DropDown = new Dropdown(page, DropDownLocator, "Test DropDown");
});

test("set dropdown value", async ({page}) => {
test("set dropdown value", async ({ page }) => {
await page.waitForTimeout(3000);
await DropDown.selectItem("2");
await page.waitForTimeout(500);
expect(await DropDown.getText()).toContain("2");
});
});
});

0 comments on commit 3cc2252

Please sign in to comment.