From 64cbf8a7c00f1fa70a7642bcf4fd52c67a4a4c17 Mon Sep 17 00:00:00 2001 From: David Remer Date: Fri, 2 Jun 2023 10:48:51 +0300 Subject: [PATCH] Ensure signup confirmation enabled [MAILPOET-5369] --- .../tests/acceptance/Forms/EditorAddListSelectionCest.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mailpoet/tests/acceptance/Forms/EditorAddListSelectionCest.php b/mailpoet/tests/acceptance/Forms/EditorAddListSelectionCest.php index 4482324962..0127bb8733 100644 --- a/mailpoet/tests/acceptance/Forms/EditorAddListSelectionCest.php +++ b/mailpoet/tests/acceptance/Forms/EditorAddListSelectionCest.php @@ -4,12 +4,17 @@ namespace MailPoet\Test\Acceptance; use MailPoet\Test\DataFactories\Form; use MailPoet\Test\DataFactories\Segment; +use MailPoet\Test\DataFactories\Settings; class EditorAddListSelectionCest { const CONFIRMATION_MESSAGE_TIMEOUT = 20; public function createCustomSelect(\AcceptanceTester $i) { + + $settings = new Settings(); + $settings->withConfirmationEmailEnabled(); + $i->wantTo('Add list selection block to the editor'); $segmentFactory = new Segment();