TF-3563 Add integration test for case download attachment in EmailView

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-03-18 09:58:25 +07:00
committed by Dat H. Pham
parent e82039152c
commit 5ef01d299f
3 changed files with 76 additions and 0 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/email_detailed/export_attachment_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should auto preview attachment when export attachment successfully',
scenarioBuilder: ($) => ExportAttachmentScenario($),
);
}