From 214e1e49f848c7b6cb8a192f7235dab0c90d5d22 Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Sat, 2 May 2026 16:30:09 -0400 Subject: [PATCH] test(ext/shared): pin fallback title assertion in error-copy test --- extension/src/shared/__tests__/error-copy.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension/src/shared/__tests__/error-copy.test.ts b/extension/src/shared/__tests__/error-copy.test.ts index dab56b1..5e44b0d 100644 --- a/extension/src/shared/__tests__/error-copy.test.ts +++ b/extension/src/shared/__tests__/error-copy.test.ts @@ -38,7 +38,7 @@ describe('ERROR_COPY', () => { it('lookupErrorCopy falls back to a generic shape for unknown codes', () => { const copy = lookupErrorCopy('made_up_code_xyz'); - expect(copy.title).toBeTruthy(); + expect(copy.title).toBe('Something went wrong'); expect(copy.body).toContain('made_up_code_xyz'); }); });