TF-3449 Add integration test for send email with mark as important

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-03-06 20:13:37 +07:00
committed by Dat H. Pham
parent 4e5e8f56ba
commit adaa4b95cd
6 changed files with 104 additions and 0 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/send_email_with_mark_as_important_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should see email item has important flag icon when send email with mark as important successfully',
scenarioBuilder: ($) => SendEmailWithMarkAsImportantScenario($),
);
}