TF-3570 Add integration test for case move email to folder in EmailView

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-04-01 23:31:33 +07:00
committed by Dat H. Pham
parent 13f5e12b98
commit 371716fb80
5 changed files with 91 additions and 0 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/email_detailed/move_email_to_folder_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should see email in destination folder when open detailed email and move email to destination folder successfully',
scenarioBuilder: ($) => MoveEmailToFolderScenario($),
);
}