TF-3579 E2E Mailbox move and delete email

This commit is contained in:
DatDang
2025-03-19 16:36:32 +07:00
committed by Dat H. Pham
parent 5c4329ba2a
commit a65bf27bb9
3 changed files with 77 additions and 0 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/mailbox/mailbox_move_email_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should move email to mailbox successfully',
scenarioBuilder: ($) => MailboxMoveEmailScenario($),
);
}