Wizard: Update periods at the end of lines

Removing/adding some periods for the sake of consistency.

I believe the description of the step should end with a period, helped texts and options should not (at least that's the prevailing pattern in the Wizard as of now).
This commit is contained in:
regexowl 2025-04-17 11:18:41 +02:00 committed by Lucas Garfield
parent 7f585154f2
commit 70a97acc10
5 changed files with 10 additions and 10 deletions

View file

@ -215,10 +215,10 @@ describe('Step Users', () => {
await addPassword(invalidPassword);
const invalidUserMessage = screen.getByText(
/Password must be at least 6 characters long./i
/Password must be at least 6 characters long/i
);
const warningUserMessage = screen.getByText(
/Must include at least 3 of the following: lowercase letters, uppercase letters, numbers, symbols./i
/Must include at least 3 of the following: lowercase letters, uppercase letters, numbers, symbols/i
);
await waitFor(() => expect(invalidUserMessage));
await waitFor(() => expect(warningUserMessage));
@ -236,7 +236,7 @@ describe('Step Users', () => {
await addPassword(invalidPassword);
const invalidUserMessage = screen.getByText(
/Password must be at least 6 characters long./i
/Password must be at least 6 characters long/i
);
await waitFor(() => expect(invalidUserMessage));
const nextButton = await getNextButton();