From ebd3f0d69e21b84f7f65e5f57ef0afcffc2f808a Mon Sep 17 00:00:00 2001 From: Ignacio Rivas Date: Mon, 18 Nov 2024 13:56:11 +0100 Subject: [PATCH] [Console] Avoid console url redirection (#199966) --- test/functional/apps/console/_text_input.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/apps/console/_text_input.ts b/test/functional/apps/console/_text_input.ts index c2580d2dbb067..0e286434fa8d1 100644 --- a/test/functional/apps/console/_text_input.ts +++ b/test/functional/apps/console/_text_input.ts @@ -32,7 +32,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { describe('with a data URI in the load_from query', () => { it('loads the data from the URI', async () => { await PageObjects.common.navigateToApp('console', { - hash: '#/console?load_from=data:text/plain,BYUwNmD2Q', + hash: '#/console/shell?load_from=data:text/plain,BYUwNmD2Q', }); await retry.try(async () => { @@ -44,7 +44,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { describe('with invalid data', () => { it('shows a toast error', async () => { await PageObjects.common.navigateToApp('console', { - hash: '#/console?load_from=data:text/plain,BYUwNmD2', + hash: '#/console/shell?load_from=data:text/plain,BYUwNmD2', }); await retry.try(async () => {