From d50f06aece46ea3597195031811106c68836591d Mon Sep 17 00:00:00 2001 From: rr-bw <102181210+rr-bw@users.noreply.github.com> Date: Fri, 7 Nov 2025 11:07:36 -0800 Subject: [PATCH] update test in ExtensionAuthRequestAnsweringService --- .../extension-auth-request-answering.service.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 () => {