diff --git a/client/src/client-only-routes/show-user.tsx b/client/src/client-only-routes/show-user.tsx index 80cacd8aa3b22e..c59a22560154a2 100644 --- a/client/src/client-only-routes/show-user.tsx +++ b/client/src/client-only-routes/show-user.tsx @@ -124,7 +124,6 @@ function ShowUser({ {t('report.what')} { - beforeEach(() => { - cy.task('seed'); - cy.login(); - }); - it('should be possible to report a user from their profile page', () => { - // Since going to a user page initially generates a 404, we have to ignore - // status codes on that request - cy.visit('/twaha', { failOnStatusCode: false }); - // The following line is only required if you want to test it in development - // cy.contains('Preview custom 404 page').click(); - cy.contains("Flag This User's Account for Abuse").click(); - cy.contains("Do you want to report twaha's portfolio for abuse?"); - cy.get('[data-cy="report-user"]').type('Some details'); - cy.contains('Submit the report').click(); - cy.location().should(loc => { - expect(loc.pathname).to.eq('/learn'); - }); - cy.contains('A report was sent to the team with foo@bar.com in copy'); - }); -}); diff --git a/e2e/report-user.spec.ts b/e2e/report-user.spec.ts new file mode 100644 index 00000000000000..6569e2cd75b2de --- /dev/null +++ b/e2e/report-user.spec.ts @@ -0,0 +1,31 @@ +import { test, expect } from '@playwright/test'; +test.use({ storageState: 'playwright/.auth/certified-user.json' }); + +// To run this test you will need to run the email server. +// To do this: https://contribute.freecodecamp.org/#/how-to-catch-outgoing-emails-locally?id=using-mailhog + +test('should be possible to report a user from their profile page', async ({ + page +}) => { + await page.goto('/twaha'); + + // If you build the client locally, delete the button click below. + if (!process.env.CI) { + await page.getByRole('button', { name: 'Preview custom 404 page' }).click(); + } + + await page.getByText("Flag This User's Account for Abuse").click(); + + await expect( + page.getByText("Do you want to report twaha's portfolio for abuse?") + ).toBeVisible(); + + await page.getByRole('textbox').nth(1).fill('Some details'); + await page.getByRole('button', { name: 'Submit the report' }).click(); + await expect(page).toHaveURL('/learn'); + + await expect(page.getByTestId('flash-message')).toBeVisible(); + await expect(page.getByTestId('flash-message')).toContainText( + 'A report was sent to the team with foo@bar.com in copy' + ); +});