* 🔧 Add Tailwind, update dependencies and config files * ✨ Introduce new Shadcn components and remove old ones * 🔧 Update dependencies * Add new components.json file * 🔥 Remove Chakra UI files * 🔧 Add ThemeProvider component and integrate it into main * 🔥 Remove common components * Update primary color * ✨ Add new components * ✨ Add AuthLayout component * 🔧 Add utility function cn * 🔧 Refactor devtools integration and update dependencies * ✨ Add Footer and Error components * ♻️ Update Footer * 🔥 Remove utils * ♻️ Refactor error handling in useAuth * ♻️ Refactor useCustomToast * ♻️ Refactor Login component and form handling * ♻️ Refactor SignUp component and form handling * 🔧 Update dependencies * ♻️ Refactor RecoverPassword component and form handling * ♻️ Refactor ResetPassword and form handling * ♻️ Add error component to root route * ♻️ Refactor error handling in utils * ♻️ Update buttons * 🍱 Add icons and logos assets * ♻️ Refactor Sidebar component * 🎨 Format * ♻️ Refactor ThemeProvider * ♻️ Refactor Common components * 🔥 Remove old Appearance component * ✨ Add Sidebar components * ♻️ Refactor DeleteAccount components * ♻️ Refactor ChangePassword component * ♻️ Refactor UserSettings * ✨ Add TanStack table * ♻️ Update SignUp * ✨ Add Select component * 🎨 Format * ♻️ Update Footer * ✨ Add useCopyToClipboard hook * 🎨 Tweak table styles * 🎨 Tweak styling * ♻️ Refactor AddUser and AddItem components * ♻️ Update DeleteConfirmation * ✅ Update tests * ✅ Update tests * ✅ Fix tests * ✨ Add DataTable for item and admin management * ♻️ Refactor DeleteUser and DeleteItem components * ✅ Fix tests * ♻️ Refactor EditUser and EditItem components * ♻️ Refactor UserInformation component * 🎨 Format * ♻️ Refactor pending components * 🎨 Format * ✅ Update tests * ✅ Update tests * ✅ Fix test * ♻️ Minor tweaks * ♻️ Update social media links
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import { expect, type Page } from "@playwright/test"
|
|
|
|
export async function signUpNewUser(
|
|
page: Page,
|
|
name: string,
|
|
email: string,
|
|
password: string,
|
|
) {
|
|
await page.goto("/signup")
|
|
|
|
await page.getByTestId("full-name-input").fill(name)
|
|
await page.getByTestId("email-input").fill(email)
|
|
await page.getByTestId("password-input").fill(password)
|
|
await page.getByTestId("confirm-password-input").fill(password)
|
|
await page.getByRole("button", { name: "Sign Up" }).click()
|
|
await page.goto("/login")
|
|
}
|
|
|
|
export async function logInUser(page: Page, email: string, password: string) {
|
|
await page.goto("/login")
|
|
|
|
await page.getByTestId("email-input").fill(email)
|
|
await page.getByTestId("password-input").fill(password)
|
|
await page.getByRole("button", { name: "Log In" }).click()
|
|
await page.waitForURL("/")
|
|
await expect(
|
|
page.getByText("Welcome back, nice to see you again!"),
|
|
).toBeVisible()
|
|
}
|
|
|
|
export async function logOutUser(page: Page) {
|
|
await page.getByTestId("user-menu").click()
|
|
await page.getByRole("menuitem", { name: "Log out" }).click()
|
|
await page.goto("/login")
|
|
}
|