From e3858e9fcd41e4b61c991c98030078e5817116e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Farr=C3=A9?= Date: Wed, 22 Jan 2025 21:34:28 +0000 Subject: [PATCH] Fix tests --- tests/codeception/acceptance/GlobalCalendarCest.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/codeception/acceptance/GlobalCalendarCest.php b/tests/codeception/acceptance/GlobalCalendarCest.php index 0775a1d4..1e7fc59a 100644 --- a/tests/codeception/acceptance/GlobalCalendarCest.php +++ b/tests/codeception/acceptance/GlobalCalendarCest.php @@ -75,11 +75,14 @@ public function testGlobalCalendarCreateEntry(AcceptanceTester $I) $I->waitForElementVisible('.calendar_my_spaces'); + $I->reloadPage(); + + $I->waitForText('Space Event'); + // Active space and profile filter (which should now be visible, as we have activated the profile calendar module by creating a new event) $I->click('.calendar_my_spaces'); $I->click('.calendar_my_profile'); - $I->waitForText('Space Event'); $I->see('My Test Profile Entry', '.fc-title'); }