Skip to content

Commit

Permalink
maintain: update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mxyng committed Sep 6, 2022
1 parent e9482d5 commit 00ef53e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/__test__/login.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ describe('Login Component', () => {
render(<Login />)

expect(
screen.queryByText('Welcome back. Login with your credentials')
screen.queryByText('Welcome back. Login with your credentials.')
).toBeInTheDocument()
expect(
screen.queryByText('or via your identity provider.')
screen.queryByText('or with your identity provider.')
).not.toBeInTheDocument()
})

Expand All @@ -82,7 +82,7 @@ describe('Login Component', () => {

expect(
screen.getByText(
'Welcome back. Login with your credentials or via your identity provider.'
'Welcome back. Login with your credentials or with your identity provider.'
)
).toBeInTheDocument()
})
Expand Down

0 comments on commit 00ef53e

Please sign in to comment.