⬆️ Upgrade Biome to the latest version (#1861)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { type Page, expect, test } from "@playwright/test"
|
||||
import { expect, type Page, test } from "@playwright/test"
|
||||
import { firstSuperuser, firstSuperuserPassword } from "./config.ts"
|
||||
import { randomPassword } from "./utils/random.ts"
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { type Page, expect, test } from "@playwright/test"
|
||||
import { expect, type Page, test } from "@playwright/test"
|
||||
|
||||
import { randomEmail, randomPassword } from "./utils/random"
|
||||
|
||||
|
||||
@@ -9,7 +9,10 @@ type Email = {
|
||||
async function findEmail({
|
||||
request,
|
||||
filter,
|
||||
}: { request: APIRequestContext; filter?: (email: Email) => boolean }) {
|
||||
}: {
|
||||
request: APIRequestContext
|
||||
filter?: (email: Email) => boolean
|
||||
}) {
|
||||
const response = await request.get(`${process.env.MAILCATCHER_HOST}/messages`)
|
||||
|
||||
let emails = await response.json()
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { type Page, expect } from "@playwright/test"
|
||||
import { expect, type Page } from "@playwright/test"
|
||||
|
||||
export async function signUpNewUser(
|
||||
page: Page,
|
||||
|
||||
Reference in New Issue
Block a user