Skip to content

Commit

Permalink
[Console] Avoid console url redirection (elastic#199966)
Browse files Browse the repository at this point in the history
  • Loading branch information
sabarasaba authored Nov 18, 2024
1 parent 8227380 commit ebd3f0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/apps/console/_text_input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand All @@ -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 () => {
Expand Down

0 comments on commit ebd3f0d

Please sign in to comment.