From 20daa169717f0086278ecf147ef52659284cc7df Mon Sep 17 00:00:00 2001 From: Patrick Pimentel Date: Wed, 20 Aug 2025 19:42:25 -0400 Subject: [PATCH] test(browser-approval): [PM-23620] Auth Request Answering Service - Removed unneded test. --- .../auth-request-answering.service.spec.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/libs/common/src/auth/services/auth-request-answering/auth-request-answering.service.spec.ts b/libs/common/src/auth/services/auth-request-answering/auth-request-answering.service.spec.ts index 0c4a277d016..33f43f08e25 100644 --- a/libs/common/src/auth/services/auth-request-answering/auth-request-answering.service.spec.ts +++ b/libs/common/src/auth/services/auth-request-answering/auth-request-answering.service.spec.ts @@ -127,17 +127,5 @@ describe("AuthRequestAnsweringService", () => { expect(systemNotificationsService.create).not.toHaveBeenCalled(); }); - - it("creates a notification when force set password is required", async () => { - platformUtilsService.isPopupOpen.mockResolvedValue(true); - authService.activeAccountStatus$ = of(AuthenticationStatus.Unlocked); - (masterPasswordService.forceSetPasswordReason$ as jest.Mock).mockReturnValue( - of(ForceSetPasswordReason.AdminForcePasswordReset), - ); - - await sut.receivedPendingAuthRequest(userId, authRequestId); - - expect(systemNotificationsService.create).toHaveBeenCalledTimes(1); - }); }); });