chore: update dependencies

This commit is contained in:
Amruth Pillai
2026-07-08 18:54:00 +02:00
parent f9eafdf5cf
commit af5c7dde82
114 changed files with 7209 additions and 2056 deletions
+2 -2
View File
@@ -29,8 +29,8 @@ export async function openSidebarSection(page: Page, title: string) {
await expect(page.getByRole("heading", { name: title, exact: true }).filter({ visible: true }).first()).toBeVisible();
}
export async function openResumeCardMenu(page: Page, resumeName: string) {
await page.goto("/dashboard/resumes");
export async function openResumeCardMenu(page: Page, resumeName: string, { reload = true } = {}) {
if (reload) await page.goto("/dashboard/resumes");
const resumeLink = page.getByRole("link", { name: new RegExp(resumeName) });
await expect(resumeLink).toBeVisible();
await resumeLink.click({ button: "right" });