From 55eb7068b362ef772450e45d86f84e0268c1f804 Mon Sep 17 00:00:00 2001 From: sudacode Date: Sun, 24 May 2026 03:32:18 -0700 Subject: [PATCH] test: update lifecycle cleanup assertion --- src/main/runtime/app-lifecycle-actions.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/runtime/app-lifecycle-actions.test.ts b/src/main/runtime/app-lifecycle-actions.test.ts index 20e21562..1ebbac34 100644 --- a/src/main/runtime/app-lifecycle-actions.test.ts +++ b/src/main/runtime/app-lifecycle-actions.test.ts @@ -46,7 +46,7 @@ test('on will quit cleanup handler runs all cleanup steps', () => { }); cleanup(); - assert.equal(calls.length, 31); + assert.equal(calls.length, 32); assert.equal(calls[0], 'destroy-tray'); assert.equal(calls[calls.length - 1], 'stop-discord-presence'); assert.ok(calls.includes('cleanup-jellyfin-subtitles'));