TF-3558 E2E Mailbox pull to refresh

This commit is contained in:
DatDang
2025-03-17 15:33:37 +07:00
committed by Dat H. Pham
parent 71cf29e881
commit a1c7fbe242
3 changed files with 69 additions and 0 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/mailbox/pull_to_refresh_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should refresh email list when pull to refresh',
scenarioBuilder: ($) => PullToRefreshScenario($),
);
}