From e57e4ab750c2ee904f0a620ec5e8bb270c4f662c Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Wed, 27 May 2026 15:01:26 +0000 Subject: [PATCH] changing email to test --- src/app/email_templates/buildMailHeaders.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/email_templates/buildMailHeaders.test.ts b/src/app/email_templates/buildMailHeaders.test.ts index e93cbdd..999f62c 100644 --- a/src/app/email_templates/buildMailHeaders.test.ts +++ b/src/app/email_templates/buildMailHeaders.test.ts @@ -4,7 +4,7 @@ import { buildMailHeaders } from "./buildMailHeaders"; describe("buildMailHeaders", () => { it("includes X-SES-CONFIGURATION-SET when a configuration set is provided", () => { const headers = buildMailHeaders({ - fromAddress: "noreply@domna.homes", + fromAddress: "test-sender@example.test", sesConfigurationSet: "test-config-set", }); @@ -13,7 +13,7 @@ describe("buildMailHeaders", () => { it("omits X-SES-CONFIGURATION-SET entirely when no configuration set is provided", () => { const headers = buildMailHeaders({ - fromAddress: "noreply@domna.homes", + fromAddress: "test-sender@example.test", sesConfigurationSet: undefined, }); @@ -22,10 +22,10 @@ describe("buildMailHeaders", () => { it("always includes a List-Unsubscribe mailto pointing at the from address", () => { const headers = buildMailHeaders({ - fromAddress: "noreply@domna.homes", + fromAddress: "test-sender@example.test", sesConfigurationSet: undefined, }); - expect(headers["List-Unsubscribe"]).toBe(""); + expect(headers["List-Unsubscribe"]).toBe(""); }); });