TF-3551 E2E Mailbox scroll and back to top

This commit is contained in:
DatDang
2025-03-14 16:26:53 +07:00
committed by Dat H. Pham
parent b94d1900ae
commit 4836f55a19
3 changed files with 72 additions and 0 deletions
@@ -0,0 +1,10 @@
import '../../base/test_base.dart';
import '../../scenarios/mailbox/scroll_list_email_in_mailbox_and_back_to_top_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should see back to top button when scroll list email in mailbox to bottom '
'and not see back to top button when scroll list email to top',
scenarioBuilder: ($) => ScrollListEmailInMailboxAndBackToTopScenario($),
);
}