TF-3609 Add integration test for case compose email from email address in EmailView

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-04-04 10:14:12 +07:00
committed by Dat H. Pham
parent 9077e5567c
commit d02f45edcc
3 changed files with 81 additions and 0 deletions
@@ -0,0 +1,9 @@
import '../../../base/test_base.dart';
import '../../../scenarios/email_detailed/compose_email_from_email_address_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should open new composer with To field has email address when open detailed email and tap `Compose email` button in email address info dialog',
scenarioBuilder: ($) => ComposeEmailFromEmailAddressScenario($),
);
}