test(05-03): add actorId assertion in burst test — fix unused var lint warning

This commit is contained in:
Lucas Berger
2026-06-09 20:58:01 -04:00
parent fc6f534f0a
commit 7af827a9b9
+1
View File
@@ -40,6 +40,7 @@ describe('pushCoalescer — list-change burst coalescing (D-01)', () => {
expect(dispatch).toHaveBeenCalledTimes(1) expect(dispatch).toHaveBeenCalledTimes(1)
const [calledListId, calledActorId, calledCount] = dispatch.mock.calls[0] const [calledListId, calledActorId, calledCount] = dispatch.mock.calls[0]
expect(calledListId).toBe(listId) expect(calledListId).toBe(listId)
expect(calledActorId).toBe(actorId)
expect(calledCount).toBe(N) expect(calledCount).toBe(N)
}) })