1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

consolidate login strategy deps (#8859)

This commit is contained in:
Jake Fink
2024-05-21 09:34:03 -04:00
committed by GitHub
parent ead52698c3
commit 56c4be4f1a
11 changed files with 54 additions and 334 deletions

View File

@@ -150,6 +150,9 @@ describe("LoginStrategy", () => {
// The base class is abstract so we test it via PasswordLoginStrategy
passwordLoginStrategy = new PasswordLoginStrategy(
cache,
passwordStrengthService,
policyService,
loginStrategyService,
accountService,
masterPasswordService,
cryptoService,
@@ -162,9 +165,6 @@ describe("LoginStrategy", () => {
stateService,
twoFactorService,
userDecryptionOptionsService,
passwordStrengthService,
policyService,
loginStrategyService,
billingAccountProfileStateService,
vaultTimeoutSettingsService,
kdfConfigService,
@@ -461,6 +461,9 @@ describe("LoginStrategy", () => {
passwordLoginStrategy = new PasswordLoginStrategy(
cache,
passwordStrengthService,
policyService,
loginStrategyService,
accountService,
masterPasswordService,
cryptoService,
@@ -473,9 +476,6 @@ describe("LoginStrategy", () => {
stateService,
twoFactorService,
userDecryptionOptionsService,
passwordStrengthService,
policyService,
loginStrategyService,
billingAccountProfileStateService,
vaultTimeoutSettingsService,
kdfConfigService,