From 6427e7985516d6e5e370d83b948bd98ca7dbc509 Mon Sep 17 00:00:00 2001 From: Chris Parsons Date: Fri, 27 Mar 2026 20:42:03 -0700 Subject: [PATCH] Fix discord test to expect escaped period in rank display Co-Authored-By: Claude Sonnet 4.6 --- app/services/__tests__/discord.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/services/__tests__/discord.test.ts b/app/services/__tests__/discord.test.ts index b8b8660..9586dee 100644 --- a/app/services/__tests__/discord.test.ts +++ b/app/services/__tests__/discord.test.ts @@ -157,7 +157,7 @@ describe("sendStandingsUpdateNotification", () => { }); const desc = getDescription(); - expect(desc).toContain("1. Alpha FC (christhrowsrocks) — 150 pts"); + expect(desc).toContain("1\\. Alpha FC (christhrowsrocks) — 150 pts"); // Beta didn't change points or rank, so it's not shown expect(desc).not.toContain("Beta United"); });