From fc361c3dfeaa1b99349d38fe970a3a8ad4f86598 Mon Sep 17 00:00:00 2001 From: Oliver Eyton-Williams Date: Fri, 19 Dec 2025 08:29:48 +0100 Subject: [PATCH] test: ignore url after deleting account (#64750) --- e2e/delete-modal.spec.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/e2e/delete-modal.spec.ts b/e2e/delete-modal.spec.ts index 01dcf37c2ad..6eb1b15e165 100644 --- a/e2e/delete-modal.spec.ts +++ b/e2e/delete-modal.spec.ts @@ -4,8 +4,6 @@ import { promisify } from 'util'; import { test, expect } from '@playwright/test'; import translations from '../client/i18n/locales/english/translations.json'; -import { alertToBeVisible } from './utils/alerts'; -import { allowTrailingSlash } from './utils/url'; const execP = promisify(exec); @@ -116,7 +114,7 @@ test.describe('Delete Modal component', () => { ).toBeDisabled(); }); - test('should close the modal and redirect to /learn after the user fills the verify input text and clicks delete', async ({ + test('should close the modal and sign the user out after they fill in the verify input text and click delete', async ({ page }) => { await page @@ -146,8 +144,9 @@ test.describe('Delete Modal component', () => { }) ).not.toBeVisible(); - await expect(page).toHaveURL(allowTrailingSlash('/learn')); - await alertToBeVisible(page, translations.flash['account-deleted']); + // TODO: Reinstate these checks when flakiness is resolved: + // await expect(page).toHaveURL(allowTrailingSlash('/learn')); + // await alertToBeVisible(page, translations.flash['account-deleted']); // The user is signed out after their account is deleted. Don't check the // number of occurrences of the 'Sign in' link as it may vary depending on AB // tests and Gatsby develop mode flakiness.