Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
e2e: fix tests after PR
Browse files Browse the repository at this point in the history
todti committed Jan 21, 2025

Verified

This commit was signed with the committer’s verified signature.
sagikazarmark Márk Sági-Kazár
1 parent 831c3be commit 6d97880
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/e2e/test/allure-awesome/tree/search.test.ts
Original file line number Diff line number Diff line change
@@ -56,10 +56,10 @@ test.describe("SearchBox component with debounce", () => {
const clearButton = page.getByTestId("clear-button");

await searchInput.fill("i am input");
await page.waitForTimeout(300);
await page.waitForTimeout(350);

await expect(searchInput).toHaveValue("i am input");
await expect(clearButton).toBeVisible();

await clearButton.click();

await expect(searchInput).toHaveValue("");

0 comments on commit 6d97880

Please sign in to comment.