Co-authored-by: Ali Abid <aliabid94@gmail.com>
This commit is contained in:
aliabid94 2024-05-29 15:12:48 -07:00 committed by GitHub
parent aebd2e952e
commit d8fe958816
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,14 +22,14 @@ test("Test re-renders reattach components and listeners", async ({ page }) => {
await expect(page.getByLabel("Box 2")).toBeEmpty();
await page.getByLabel("range slider for Textbox Count").fill("4");
await page.getByLabel("Box 0").click();
await page.getByLabel("Box 0").fill("t");
await page.getByLabel("Box 1").click();
await page.getByLabel("Box 1").fill("e");
await page.getByLabel("Box 2").click();
await page.getByLabel("Box 2").fill("s");
await page.getByLabel("Box 3").click();
await page.getByLabel("Box 3").fill("t");
await page.getByLabel("Box 2").click();
await page.getByLabel("Box 2").fill("s");
await page.getByLabel("Box 1").click();
await page.getByLabel("Box 1").fill("e");
await page.getByLabel("Box 0").click();
await page.getByLabel("Box 0").fill("t");
await page.getByRole("button", { name: "Merge" }).click();
await expect(output).toHaveValue("t e s t");