From 6b32f14bb5cae18bae7706ccf3d745b870ebfce1 Mon Sep 17 00:00:00 2001 From: Bastian Wagner Date: Fri, 21 Aug 2026 23:36:18 +0200 Subject: [PATCH] fix(test): translate the e2e smoke test's monster name assertions to English MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit visible-slice.e2e-spec.ts still asserted the German monster names 'Aschenratte'/'Straßenräuber' that Task 1 already translated in the seed data. Update the assertion to the actual English seeded values 'Ash Rat'/'Road Bandit'. This file lives outside the *.spec.ts glob (it's matched by jest-e2e.json's *.e2e-spec.ts pattern instead), so it was missed by prior sweeps scoped to the unit-test glob. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01ACkMEDYiwtcfchqKkiUJNX --- apps/api/test/visible-slice.e2e-spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/test/visible-slice.e2e-spec.ts b/apps/api/test/visible-slice.e2e-spec.ts index f5b9263..ce5f8e8 100644 --- a/apps/api/test/visible-slice.e2e-spec.ts +++ b/apps/api/test/visible-slice.e2e-spec.ts @@ -266,8 +266,8 @@ describe('Visible vertical slice smoke (e2e)', () => { expect(atBurnedRoad.key).toBe('burned-road'); expect(atBurnedRoad.possibleMonsters).toEqual([ - 'Aschenratte', - 'Straßenräuber', + 'Ash Rat', + 'Road Bandit', ]); const firstHunt = await request(app.getHttpServer())