TF-4367 Add E2E test for test case reply email when change language on mobile

This commit is contained in:
dab246
2026-03-10 13:16:11 +07:00
committed by Dat H. Pham
parent 88f9643072
commit 8246dd66fd
2 changed files with 186 additions and 0 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/email_detailed/reply_email_when_change_language_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'The reply prefix should be displayed correctly when replying to an email.',
scenarioBuilder: ($) => ReplyEmailWhenChangeLanguageScenario($),
);
}