TF-3585 Add unit test & integration test for read receipt dialog

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-03-24 13:29:58 +07:00
committed by Dat H. Pham
parent 665224931c
commit df3814dcf5
5 changed files with 222 additions and 0 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/send_email_with_read_receipt_enabled_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should see read receipt dialog when user toggle read receipt and open read receipt email',
scenarioBuilder: ($) => SendEmailWithReadReceiptEnabledScenario($),
);
}