From 638afbe7e33129f5b318bb31e51e39f4467ad4a8 Mon Sep 17 00:00:00 2001 From: Chris Maltby Date: Tue, 7 May 2024 15:40:37 +0100 Subject: [PATCH] Fix tests --- test/store/features/entities/entitiesState.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/store/features/entities/entitiesState.test.ts b/test/store/features/entities/entitiesState.test.ts index d31ffa962..8fa604231 100644 --- a/test/store/features/entities/entitiesState.test.ts +++ b/test/store/features/entities/entitiesState.test.ts @@ -1455,7 +1455,7 @@ test("Should be able to add custom event", () => { expect(newState.customEvents.ids.length).toBe(1); expect( newState.customEvents.entities[action.payload.customEventId]?.name - ).toBe(""); + ).toBe("CUSTOM_EVENT 1"); expect( newState.customEvents.entities[action.payload.customEventId]?.script ).toEqual([]);