fix(e2e): remove hardcoded 5s timeout in verifyTextInLocator#4533
fix(e2e): remove hardcoded 5s timeout in verifyTextInLocator#4533jonkoops wants to merge 1 commit intoredhat-developer:mainfrom
Conversation
The hardcoded `timeout: 5000` was inadvertently introduced in redhat-developer#4020 and is shorter than Playwright's configured `actionTimeout` (10-15s), causing flaky failures in CI for `verifyText` and `verifyRowsInTable` callers (e.g. RBAC role creation, catalog table checks). Removing it restores the original behavior where Playwright's global `actionTimeout` applies. Made-with: Cursor
PR TypeBug fix Description
|
| Relevant files | |||
|---|---|---|---|
| Bug fix |
|
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
|||||||||



Removes the hardcoded
timeout: 5000fromverifyTextInLocatorinui-helper.ts, restoring the original behavior where Playwright's configuredactionTimeout(10-15s) applies. The 5s timeout was inadvertently introduced in #4020 and is shorter than the global config, causing flaky CI failures forverifyTextandverifyRowsInTablecallers (e.g. RBAC role creation toast, catalog table checks)