diff --git a/apps/browser/src/autofill/background/notification.background.spec.ts b/apps/browser/src/autofill/background/notification.background.spec.ts index 5e7e3ed30f5..389792fd1e5 100644 --- a/apps/browser/src/autofill/background/notification.background.spec.ts +++ b/apps/browser/src/autofill/background/notification.background.spec.ts @@ -23,6 +23,7 @@ import { FolderView } from "@bitwarden/common/vault/models/view/folder.view"; import { CipherService } from "@bitwarden/common/vault/services/cipher.service"; import { FolderService } from "@bitwarden/common/vault/services/folder/folder.service"; import { TaskService, SecurityTask } from "@bitwarden/common/vault/tasks"; +import { ChangeLoginPasswordService } from "@bitwarden/vault"; import { BrowserApi } from "../../platform/browser/browser-api"; import { NotificationQueueMessageType } from "../enums/notification-queue-message-type.enum"; @@ -68,6 +69,7 @@ describe("NotificationBackground", () => { const configService = mock(); const accountService = mock(); const organizationService = mock(); + const changeLoginPasswordService = mock(); const userId = "testId" as UserId; const activeAccountSubject = new BehaviorSubject<{ id: UserId } & AccountInfo>({ @@ -98,6 +100,7 @@ describe("NotificationBackground", () => { themeStateService, userNotificationSettingsService, taskService, + changeLoginPasswordService, messagingService, ); });