fix: waiting time to pass CI

This commit is contained in:
Grégoire Cutzach 2024-10-10 09:58:35 +02:00
parent 9c9ccc4c15
commit 2d14a48d6e
No known key found for this signature in database
GPG Key ID: AA4155BE23C375E6

View File

@ -14,7 +14,7 @@ export const element = (testId: string) => ({
return driver.find(testId); return driver.find(testId);
}, },
async wait() { async wait() {
await driver.findWait(testId, 1000); await driver.findWait(testId, 2000);
}, },
async visible() { async visible() {
return await this.element().isDisplayed(); return await this.element().isDisplayed();