TF-4053 Add E2E test for test case move folder content

This commit is contained in:
dab246
2025-10-29 16:20:10 +07:00
committed by Dat H. Pham
parent cb3fa99d68
commit a5cc102d0e
6 changed files with 133 additions and 5 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/mailbox/move_folder_content_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should see all Inbox emails in the Templates folder when perform move folder content action successfully',
scenarioBuilder: ($) => MoveFolderContentScenario($),
);
}