TF-4265 Add integration test for attachment reminder on mobile

This commit is contained in:
dab246
2026-01-30 16:09:38 +07:00
committed by Dat H. Pham
parent 74c0c75023
commit 2a3325ab7a
17 changed files with 781 additions and 899 deletions
@@ -0,0 +1,10 @@
import '../../base/test_base.dart';
import '../../scenarios/composer/attachment_reminder_scenario.dart';
void main() {
TestBase().runPatrolTest(
description:
'Should not see attachment reminder when send email with attachment keyword in signature',
scenarioBuilder: ($) => AttachmentReminderScenario($),
);
}