fixup! TF-3649 Fix reply to own sent email

This commit is contained in:
DatDang
2025-04-15 11:46:36 +07:00
committed by Dat H. Pham
parent 6cac72b09e
commit 43aee1d286
4 changed files with 64 additions and 1 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/email/reply_to_own_sent_email_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should all To recipients when reply to own sent email',
scenarioBuilder: ($) => ReplyToOwnSentEmailScenario($),
);
}