TF-3579 E2E Mailbox mark as read

This commit is contained in:
DatDang
2025-03-19 16:36:57 +07:00
committed by Dat H. Pham
parent a65bf27bb9
commit e6c3ebf0d7
8 changed files with 90 additions and 201 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/mailbox/mark_mailbox_as_read_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should not see unread counter when mark mailbox as read',
scenarioBuilder: ($) => MarkMailboxAsReadScenario($),
);
}