TF-3707 Add integration test for case empty trash

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-05-06 23:44:24 +07:00
committed by Dat H. Pham
parent afbebb7eb7
commit b6de5d9391
7 changed files with 116 additions and 8 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/mailbox/empty_trash_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should empty view and hide empty trash banner when empty trash successfully',
scenarioBuilder: ($) => EmptyTrashScenario($),
);
}