diff --git a/apps/browser/src/auth/services/auth-request-answering/extension-auth-request-answering.service.spec.ts b/apps/browser/src/auth/services/auth-request-answering/extension-auth-request-answering.service.spec.ts index 283b0309ebb..55c8f5df1b2 100644 --- a/apps/browser/src/auth/services/auth-request-answering/extension-auth-request-answering.service.spec.ts +++ b/apps/browser/src/auth/services/auth-request-answering/extension-auth-request-answering.service.spec.ts @@ -108,7 +108,9 @@ describe("ExtensionAuthRequestAnsweringService", () => { // Assert expect(messagingService.send).toHaveBeenCalledTimes(1); - expect(messagingService.send).toHaveBeenCalledWith("openLoginApproval"); + expect(messagingService.send).toHaveBeenCalledWith("openLoginApproval", { + notificationId: authRequestId, + }); }); it("should not send an 'openLoginApproval' message if the popup is closed", async () => {