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

This commit is contained in:
dab246
2026-03-10 13:43:41 +07:00
committed by Dat H. Pham
parent b7287d4b5c
commit 12b9ad4a40
2 changed files with 187 additions and 0 deletions
@@ -0,0 +1,10 @@
import '../../base/test_base.dart';
import '../../scenarios/email_detailed/reply_email_replied_when_change_language_scenario.dart';
void main() {
TestBase().runPatrolTest(
description:
'The subject line of an email should not be changed when replying to an email that has already been replied to.',
scenarioBuilder: ($) => ReplyEmailRepliedWhenChangeLanguageScenario($),
);
}