diff --git a/src/hooks/session-notification-input-needed.test.ts b/src/hooks/session-notification-input-needed.test.ts index f85d9154d..8cccb1918 100644 --- a/src/hooks/session-notification-input-needed.test.ts +++ b/src/hooks/session-notification-input-needed.test.ts @@ -139,6 +139,16 @@ describe("session-notification input-needed events", () => { expect(detectPlatformSpy).toHaveBeenCalledTimes(1) expect(getDefaultSoundPathSpy).toHaveBeenCalledTimes(1) expect(startBackgroundCheckSpy).toHaveBeenCalledTimes(1) + + // when + await hook({ + event: { + type: "session.deleted", + properties: { + info: { id: sessionID }, + }, + }, + }) }) })