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'); }); });