From 11df29ca1887e1355d1177c00c0fab625dcf7d6f Mon Sep 17 00:00:00 2001 From: jaasen-livefront Date: Wed, 13 Aug 2025 09:14:29 -0700 Subject: [PATCH] fix test --- .../login-details-section.component.spec.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libs/vault/src/cipher-form/components/login-details-section/login-details-section.component.spec.ts b/libs/vault/src/cipher-form/components/login-details-section/login-details-section.component.spec.ts index 2bac81ffe36..b07a50fd383 100644 --- a/libs/vault/src/cipher-form/components/login-details-section/login-details-section.component.spec.ts +++ b/libs/vault/src/cipher-form/components/login-details-section/login-details-section.component.spec.ts @@ -43,13 +43,12 @@ describe("LoginDetailsSectionComponent", () => { const collect = jest.fn().mockResolvedValue(null); const getInitialCipherView = jest.fn(() => null); - const formStatusChange$ = new BehaviorSubject<"enabled" | "disabled">("enabled"); beforeEach(async () => { getInitialCipherView.mockClear(); cipherFormContainer = mock({ getInitialCipherView, - formStatusChange$, + formStatusChange$: new BehaviorSubject<"enabled" | "disabled">("enabled"), website: "example.com", });