Skip to content

Commit

Permalink
fix typo in delete acc test
Browse files Browse the repository at this point in the history
  • Loading branch information
Agusti Fernandez Pardo committed Aug 24, 2022
1 parent 6fb2454 commit 013315f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/playwright/auth/delete-account.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ test("Can delete user account", async ({ page, users }) => {
await page.waitForSelector("[data-testid=dashboard-shell]");

await page.goto(`/settings/profile`);
await page.fill("[data-testid=password", "delete-me");
await page.fill("[data-testid=password]", "delete-me");
await page.click("[data-testid=delete-account]");

await expect(page.locator(`[data-testid=delete-account-confirm]`)).toBeVisible();
Expand Down

0 comments on commit 013315f

Please sign in to comment.