changing ses config to test values

This commit is contained in:
Khalim Conn-Kowlessar 2026-05-27 14:54:59 +00:00
parent 47efd1bd5a
commit 4f176a482f

View file

@ -5,10 +5,10 @@ describe("buildMailHeaders", () => {
it("includes X-SES-CONFIGURATION-SET when a configuration set is provided", () => {
const headers = buildMailHeaders({
fromAddress: "noreply@domna.homes",
sesConfigurationSet: "dev-ses-config",
sesConfigurationSet: "test-config-set",
});
expect(headers["X-SES-CONFIGURATION-SET"]).toBe("dev-ses-config");
expect(headers["X-SES-CONFIGURATION-SET"]).toBe("test-config-set");
});
it("omits X-SES-CONFIGURATION-SET entirely when no configuration set is provided", () => {