1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-05 19:23:19 +00:00
This commit is contained in:
jaasen-livefront
2025-08-13 09:14:29 -07:00
parent 529e96dceb
commit 11df29ca18

View File

@@ -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<CipherFormContainer>({
getInitialCipherView,
formStatusChange$,
formStatusChange$: new BehaviorSubject<"enabled" | "disabled">("enabled"),
website: "example.com",
});