From 84b9f65fb616dc9aa049f44c1608806d2d919370 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Thu, 16 Jan 2025 13:39:08 +0000 Subject: [PATCH] Change external domain used in offboarding test to be more reliable Fixes #5019 --- test/e2e/frontend/cypress/tests/admin/offboarding.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e/frontend/cypress/tests/admin/offboarding.spec.js b/test/e2e/frontend/cypress/tests/admin/offboarding.spec.js index 3cb1399931..b583605579 100644 --- a/test/e2e/frontend/cypress/tests/admin/offboarding.spec.js +++ b/test/e2e/frontend/cypress/tests/admin/offboarding.spec.js @@ -69,7 +69,7 @@ describe('FlowForge - Team Membership', () => { ...res.body, ...{ 'user:offboarding-required': true, - 'user:offboarding-url': 'https://www.google.com/search?q=rick+astley' + 'user:offboarding-url': 'https://nodered.org/about/?search=rick' } } return res @@ -86,8 +86,8 @@ describe('FlowForge - Team Membership', () => { cy.get('[data-action="delete-account"]').click() cy.get('[data-action="dialog-confirm"]').click() - cy.origin('https://www.google.com', () => { - cy.url().should('to.match', /^https:\/\/www\.google\.com\/search\?q=rick\+astley/) + cy.origin('https://nodered.org', () => { + cy.url().should('to.match', /^https:\/\/nodered\.org\/about\/\?search=rick/) }) }) })