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
@@ -14,7 +14,7 @@ test("renames, duplicates and deletes a resume from the dashboard", async ({ aut
await expect(page.getByRole("link", { name: new RegExp(renamedTo) })).toBeVisible();
// Duplicate — the copy defaults to "<name> (Copy)"
await openResumeCardMenu(page, renamedTo);
await openResumeCardMenu(page, renamedTo, { reload: false });
await page.getByRole("menuitem", { name: "Duplicate" }).click();
const duplicateDialog = page.getByRole("dialog", { name: "Duplicate Resume" });
await duplicateDialog.getByRole("button", { name: "Duplicate" }).click();
@@ -22,7 +22,7 @@ test("renames, duplicates and deletes a resume from the dashboard", async ({ aut
await expect(copyLink).toBeVisible();
// Delete the copy and verify it disappears while the original stays
await openResumeCardMenu(page, `${renamedTo} \\(Copy\\)`);
await openResumeCardMenu(page, `${renamedTo} \\(Copy\\)`, { reload: false });
await page.getByRole("menuitem", { name: "Delete" }).click();
await page.getByRole("alertdialog").getByRole("button", { name: "Confirm" }).click();
await expect(copyLink).toBeHidden();