Fixes delete-me test

pull/2728/head^2
zomars 2022-05-11 20:21:16 -06:00
parent ecb3264b52
commit 43f479299a
1 changed files with 9 additions and 15 deletions

View File

@ -1,19 +1,13 @@
import { expect, test } from "@playwright/test";
import { expect } from "@playwright/test";
import { test } from "../lib/fixtures";
test("Can delete user account", async ({ page, users }) => {
const user = await users.create({
username: "delete-me",
});
await user.login();
test("Can delete user account", async ({ page }) => {
//FIXME: This test depends on seed.
// Login to account to delete
await page.goto(`/auth/login`);
// Click input[name="email"]
await page.click('input[name="email"]');
// Fill input[name="email"]
await page.fill('input[name="email"]', `delete-me@example.com`);
// Press Tab
await page.press('input[name="email"]', "Tab");
// Fill input[name="password"]
await page.fill('input[name="password"]', "delete-me");
// Press Enter
await page.press('input[name="password"]', "Enter");
await page.waitForSelector("[data-testid=dashboard-shell]");
await page.goto(`/settings/profile`);