mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
increase minimum number of words on passphrases to 6 (#11675)
This commit is contained in:
@@ -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,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user