TF-3683 Add integration test for case update draft email with message success toast

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-04-23 12:33:04 +07:00
committed by Dat H. Pham
parent b278aae5f0
commit 5f00d78dd4
2 changed files with 82 additions and 0 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/composer/update_draft_email_with_message_success_toast_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should see message success toast when edit draft email and save draft successfully',
scenarioBuilder: ($) => UpdateDraftEmailWithMessageSuccessToastScenario($),
);
}