TF-3670 Add integration test for case forward email lost attachments

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-04-18 00:38:56 +07:00
committed by Dat H. Pham
parent 9d3a0e585e
commit dd6b1ede9d
2 changed files with 84 additions and 0 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/email_detailed/forwarding_email_lost_attachments_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should see attachment list in email view after forward email successfully',
scenarioBuilder: ($) => ForwardingEmailLostAttachmentsScenario($),
);
}