From fe63c5d677b4958b2ce6409c291bd085d981b0ac Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Wed, 23 Apr 2025 16:49:39 +0530 Subject: [PATCH] fix(tests): create `example.com` email_domain record for test email_account tests rely on this Signed-off-by: Akhil Narang --- frappe/email/doctype/email_domain/test_records.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frappe/email/doctype/email_domain/test_records.json b/frappe/email/doctype/email_domain/test_records.json index a6ccc99f06..41c469d105 100644 --- a/frappe/email/doctype/email_domain/test_records.json +++ b/frappe/email/doctype/email_domain/test_records.json @@ -28,5 +28,14 @@ "smtp_server": "smtp.test.com", "smtp_port": "587", "password": "password" + }, + { + "doctype": "Email Domain", + "domain_name": "example.com", + "email_id": "account@example.com", + "password": "pass", + "email_server": "imap.example.com", + "use_imap": 1, + "smtp_server": "smtp.example.com" } ]