Add E2E test for case show full recipient field when expand all

This commit is contained in:
dab246
2025-11-20 10:47:35 +07:00
committed by Dat H. Pham
parent 6f6284c21f
commit 2fe9021c7f
14 changed files with 90 additions and 3 deletions
@@ -0,0 +1,10 @@
import '../../base/test_base.dart';
import '../../scenarios/composer/show_full_recipient_fields_when_expand_all_scenario.dart';
void main() {
TestBase().runPatrolTest(
description:
'Should see all recipient fields when expand all recipients in composer',
scenarioBuilder: ($) => ShowFullRecipientFieldsWhenExpandAllScenario($),
);
}