Skip to content

Commit 77b230c

Browse files
committed
Ran prettier
1 parent 475b2bf commit 77b230c

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

site/src/pages/LoginPage/LoginPage.test.tsx

+7-3
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ describe("LoginPage", () => {
9898
render(<LoginPage />)
9999

100100
// Then
101-
expect(await screen.queryByText(Language.passwordSignIn)).not.toBeInTheDocument()
101+
expect(
102+
await screen.queryByText(Language.passwordSignIn),
103+
).not.toBeInTheDocument()
102104
await screen.findByText(Language.githubSignIn)
103105
})
104106

@@ -140,11 +142,13 @@ describe("LoginPage", () => {
140142
render(<LoginPage />)
141143

142144
// Then
143-
expect(await screen.queryByText(Language.passwordSignIn)).not.toBeInTheDocument()
145+
expect(
146+
await screen.queryByText(Language.passwordSignIn),
147+
).not.toBeInTheDocument()
144148
await screen.findByText(Language.githubSignIn)
145149

146150
const showPasswordAuthLink = screen.getByText("Show password login")
147-
await userEvent.click(showPasswordAuthLink);
151+
await userEvent.click(showPasswordAuthLink)
148152

149153
await screen.findByText(Language.passwordSignIn)
150154
await screen.findByText(Language.githubSignIn)

0 commit comments

Comments
 (0)