1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

increase minimum number of words on passphrases to 6 (#11675)

This commit is contained in:
✨ Audrey ✨
2024-10-24 15:16:10 -04:00
committed by GitHub
parent c44476788f
commit 0254550b07
8 changed files with 25 additions and 25 deletions

View File

@@ -348,7 +348,7 @@ describe("LegacyPasswordGenerationService", () => {
const innerPassphrase = createPassphraseGenerator(
{},
{
minNumberWords: 5,
minNumberWords: 6,
capitalize: true,
includeNumber: true,
},
@@ -370,7 +370,7 @@ describe("LegacyPasswordGenerationService", () => {
expect(result).toBe(options);
expect(result).toMatchObject({
numWords: 5,
numWords: 6,
capitalize: true,
includeNumber: true,
});