Skip to content

Commit c9ab658

Browse files
committed
🎨 Format
1 parent bbdf2ff commit c9ab658

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

frontend/tests/reset-password.spec.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ test("User can reset password successfully using the link", async ({
5050
timeout: 5000,
5151
})
5252

53-
await page.goto(`${process.env.MAILCATCHER_HOST}/messages/${emailData.id}.html`)
53+
await page.goto(
54+
`${process.env.MAILCATCHER_HOST}/messages/${emailData.id}.html`,
55+
)
5456

5557
const selector = 'a[href*="/reset-password?token="]'
5658

@@ -103,7 +105,9 @@ test("Weak new password validation", async ({ page, request }) => {
103105
timeout: 5000,
104106
})
105107

106-
await page.goto(`${process.env.MAILCATCHER_HOST}/messages/${emailData.id}.html`)
108+
await page.goto(
109+
`${process.env.MAILCATCHER_HOST}/messages/${emailData.id}.html`,
110+
)
107111

108112
const selector = 'a[href*="/reset-password?token="]'
109113
let url = await page.getAttribute(selector, "href")

0 commit comments

Comments
 (0)