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:
parent
7f585154f2
commit
70a97acc10
5 changed files with 10 additions and 10 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue