From 7af827a9b93bcce1a89ba55fd0c48a4a634705e3 Mon Sep 17 00:00:00 2001 From: Lucas Berger Date: Tue, 9 Jun 2026 20:58:01 -0400 Subject: [PATCH] =?UTF-8?q?test(05-03):=20add=20actorId=20assertion=20in?= =?UTF-8?q?=20burst=20test=20=E2=80=94=20fix=20unused=20var=20lint=20warni?= =?UTF-8?q?ng?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/api/tests/lib/pushCoalescer.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/api/tests/lib/pushCoalescer.test.ts b/apps/api/tests/lib/pushCoalescer.test.ts index dbee525..15276a1 100644 --- a/apps/api/tests/lib/pushCoalescer.test.ts +++ b/apps/api/tests/lib/pushCoalescer.test.ts @@ -40,6 +40,7 @@ describe('pushCoalescer — list-change burst coalescing (D-01)', () => { expect(dispatch).toHaveBeenCalledTimes(1) const [calledListId, calledActorId, calledCount] = dispatch.mock.calls[0] expect(calledListId).toBe(listId) + expect(calledActorId).toBe(actorId) expect(calledCount).toBe(N) })