TF-3685 Add integration test for case change identity in draft email

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-04-23 11:40:59 +07:00
committed by Dat H. Pham
parent 80dff51c77
commit ef1f979c4b
10 changed files with 312 additions and 112 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/composer/change_identity_in_draft_email_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should see new identity in From field when select new identity and save as draft successfully',
scenarioBuilder: ($) => ChangeIdentityInDraftEmailScenario($),
);
}