diff --git a/x-pack/platform/plugins/shared/streams_app/public/components/data_management/schema_editor/index.tsx b/x-pack/platform/plugins/shared/streams_app/public/components/data_management/schema_editor/index.tsx index 7571cd4f242a7..5c04516dc792d 100644 --- a/x-pack/platform/plugins/shared/streams_app/public/components/data_management/schema_editor/index.tsx +++ b/x-pack/platform/plugins/shared/streams_app/public/components/data_management/schema_editor/index.tsx @@ -50,6 +50,7 @@ export function SchemaEditor({ )} { +test.describe('Classic Streams', { tag: ['@ess', '@svlOblt'] }, () => { test.beforeEach(async ({ kbnClient, esClient, browserAuth, pageObjects }) => { await kbnClient.importExport.load(testData.KBN_ARCHIVES.DASHBOARD); await esClient.indices.putIndexTemplate({ diff --git a/x-pack/platform/plugins/shared/streams_app/ui_tests/tests/wired.spec.ts b/x-pack/platform/plugins/shared/streams_app/ui_tests/tests/wired.spec.ts index 62bdb6c99d204..3d182eca30b06 100644 --- a/x-pack/platform/plugins/shared/streams_app/ui_tests/tests/wired.spec.ts +++ b/x-pack/platform/plugins/shared/streams_app/ui_tests/tests/wired.spec.ts @@ -8,7 +8,7 @@ import { expect } from '@kbn/scout'; import { testData, test } from '../fixtures'; -test.describe.skip('Wired Streams', { tag: ['@ess'] }, () => { +test.describe('Wired Streams', { tag: ['@ess', '@svlOblt'] }, () => { test.beforeEach(async ({ apiServices, kbnClient, browserAuth, pageObjects }) => { await kbnClient.importExport.load(testData.KBN_ARCHIVES.DASHBOARD); await apiServices.streams.enable(); @@ -70,16 +70,11 @@ test.describe.skip('Wired Streams', { tag: ['@ess'] }, () => { await page.getByPlaceholder('Search...').fill('attributes'); await page.getByTestId('streamsAppContentRefreshButton').click(); - const actionsButtons = page + await expect(page.getByTestId('streamsAppSchemaEditorFieldsTableLoaded')).toBeVisible(); + await page .getByRole('row', { name: 'attributes.custom_field' }) - .getByTestId('streamsAppActionsButton'); - - await actionsButtons.focus(); - await actionsButtons.click(); - - await expect( - page.getByTestId('contextMenuPanelTitle').getByText('Field actions') - ).toBeVisible(); + .getByTestId('streamsAppActionsButton') + .click(); await page.getByRole('button', { name: 'Map field' }).click(); await page.getByRole('combobox').selectOption('keyword'); await page.getByRole('button', { name: 'Save changes' }).click();