TF-3609 Add integration test for case create rule with email address in EmailView

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-04-04 10:14:32 +07:00
committed by Dat H. Pham
parent d02f45edcc
commit 3aa4aa1b30
3 changed files with 75 additions and 0 deletions
@@ -0,0 +1,9 @@
import '../../../base/test_base.dart';
import '../../../scenarios/email_detailed/create_rule_with_email_address_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should open new rule filter creator view with condition field has email address when open detailed email and tap `Create a rule with this email address` button in email address info dialog',
scenarioBuilder: ($) => CreateRuleWithEmailAddressScenario($),
);
}