TF-3558 E2E Mailbox switch

This commit is contained in:
DatDang
2025-03-17 15:33:49 +07:00
committed by Dat H. Pham
parent a1c7fbe242
commit e82039152c
3 changed files with 64 additions and 0 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/mailbox/switch_mailbox_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should switch and see emails in mailboxes',
scenarioBuilder: ($) => SwitchMailboxScenario($),
);
}