Skip to content

Commit

Permalink
[TASK] Stabilize acceptance test for postgres in nightly
Browse files Browse the repository at this point in the history
This change increases the element wait time in one
acceptance tests which tends to fail due to some
timing issues during nightly ci execution.

Resolves: #101440
Releases: main, 12.4
Change-Id: I7d2318fa78b32e40a6148a6d0f65da6d96a2ad91
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/80134
Tested-by: core-ci <typo3@b13.com>
Tested-by: Christian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch>
  • Loading branch information
sbuerk authored and lolli42 committed Jul 25, 2023
1 parent 7d94d9f commit 03d5206
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -42,7 +42,7 @@ public function seeSwitchModes(ApplicationTester $I): void
$I->seeCheckboxIsChecked($this->copyModeMove);
$I->dontSeeCheckboxIsChecked($this->copyModeCopy);
$I->click('//*/label[@for="clipboard-copymode-copy"]');
$I->waitForElement($this->copyModeMove, 2);
$I->waitForElement($this->copyModeMove, 5);
$I->dontSeeCheckboxIsChecked($this->copyModeMove);
$I->seeCheckboxIsChecked($this->copyModeCopy);
}
Expand Down

0 comments on commit 03d5206

Please sign in to comment.