mirror of
https://github.com/documenso/documenso.git
synced 2025-11-09 20:12:31 +10:00
28 lines
967 B
TypeScript
28 lines
967 B
TypeScript
import { expect, test } from '@playwright/test';
|
|
|
|
import { WEBAPP_BASE_URL } from '@documenso/lib/constants/app';
|
|
import { getUserByEmail } from '@documenso/lib/server-only/user/get-user-by-email';
|
|
import { seedUser } from '@documenso/prisma/seed/users';
|
|
|
|
import { manualLogin } from './fixtures/authentication';
|
|
|
|
test('delete user', async ({ page }) => {
|
|
const user = await seedUser();
|
|
|
|
await manualLogin({
|
|
page,
|
|
email: user.email,
|
|
redirectPath: '/settings',
|
|
});
|
|
|
|
await page.getByRole('button', { name: 'Delete Account' }).click();
|
|
await page.getByLabel('Confirm Email').fill(user.email);
|
|
await expect(page.getByRole('button', { name: 'Confirm Deletion' })).not.toBeDisabled();
|
|
await page.getByRole('button', { name: 'Confirm Deletion' }).click();
|
|
|
|
await page.waitForURL(`${WEBAPP_BASE_URL}/signin`);
|
|
|
|
// Verify that the user no longer exists in the database
|
|
await expect(getUserByEmail({ email: user.email })).rejects.toThrow();
|
|
});
|