mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-25 16:42:34 +00:00
Fix flaky org test. (#41753)
Fixes #41752 Signed-off-by: Stan Silvert <ssilvert@redhat.com>
This commit is contained in:
@@ -77,6 +77,10 @@ test.describe("Organization CRUD", () => {
|
||||
|
||||
test("should modify existing organization", async ({ page }) => {
|
||||
await clickTableRowItem(page, orgName);
|
||||
|
||||
// This waits for the field to be filled before we clear and fill it with a new value
|
||||
await expect(getNameField(page)).toHaveValue(orgName);
|
||||
|
||||
const newValue = "newName";
|
||||
await fillNameField(page, newValue);
|
||||
await expect(getNameField(page)).toHaveValue(newValue);
|
||||
|
||||
Reference in New Issue
Block a user