diff --git a/test/functional/apps/dashboard/dashboard_filtering.ts b/test/functional/apps/dashboard/dashboard_filtering.ts index acb04b4946fad..acf46223dfefa 100644 --- a/test/functional/apps/dashboard/dashboard_filtering.ts +++ b/test/functional/apps/dashboard/dashboard_filtering.ts @@ -68,7 +68,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await security.testUser.restoreDefaults(); }); - describe('adding a filter that excludes all data', () => { + describe.skip('adding a filter that excludes all data', () => { before(async () => { await populateDashboard(); await addFilterAndRefresh(); diff --git a/test/functional/apps/discover/_data_grid_doc_table.ts b/test/functional/apps/discover/_data_grid_doc_table.ts index 9ae6a9086f819..58f97c0798e10 100644 --- a/test/functional/apps/discover/_data_grid_doc_table.ts +++ b/test/functional/apps/discover/_data_grid_doc_table.ts @@ -61,7 +61,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { }); // flaky https://github.com/elastic/kibana/issues/94889 - it.skip('should show popover with expanded cell content by click on expand button', async () => { + it('should show popover with expanded cell content by click on expand button', async () => { log.debug('open popover with expanded cell content to get json from the editor'); const documentCell = await dataGrid.getCellElement(1, 3); await documentCell.click(); @@ -79,7 +79,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { expect(popoverJson).to.be(flyoutJson); }); - describe('expand a document row', function () { + describe.skip('expand a document row', function () { const rowToInspect = 1; it('should expand the detail row when the toggle arrow is clicked', async function () { @@ -105,7 +105,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { }); }); // skipping for this backport because it's flaky, will resolve in master - it.skip('should show allow adding columns from the detail panel', async function () { + it('should show allow adding columns from the detail panel', async function () { await retry.try(async function () { await dataGrid.clickRowToggle({ isAnchorRow: false, rowIndex: rowToInspect - 1 }); await dataGrid.getDetailsRows(); @@ -132,7 +132,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { }); }); - describe('add and remove columns', function () { + describe.skip('add and remove columns', function () { const extraColumns = ['phpmemory', 'ip']; afterEach(async function () { @@ -142,7 +142,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { } }); - it('should add more columns to the table', async function () { + it.skip('should add more columns to the table', async function () { for (const column of extraColumns) { await PageObjects.discover.clearFieldSearchInput(); await PageObjects.discover.findFieldByName(column); diff --git a/test/functional/apps/discover/_discover.ts b/test/functional/apps/discover/_discover.ts index 87960d1b6a966..a1d0a58b5d8bf 100644 --- a/test/functional/apps/discover/_discover.ts +++ b/test/functional/apps/discover/_discover.ts @@ -242,7 +242,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { describe('time zone switch', () => { // skipping this until we get an elastic-chart alternative to check the ticks value - it.skip('should show ticks in the correct time zone after switching', async function () { + it('should show ticks in the correct time zone after switching', async function () { await kibanaServer.uiSettings.replace({ 'dateFormat:tz': 'America/Phoenix' }); await PageObjects.common.navigateToApp('discover'); await PageObjects.header.awaitKibanaChrome(); diff --git a/test/functional/apps/discover/_indexpattern_without_timefield.ts b/test/functional/apps/discover/_indexpattern_without_timefield.ts index 74713553fa543..4f232dc02b25c 100644 --- a/test/functional/apps/discover/_indexpattern_without_timefield.ts +++ b/test/functional/apps/discover/_indexpattern_without_timefield.ts @@ -17,7 +17,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { const PageObjects = getPageObjects(['common', 'timePicker', 'discover']); // Failing: See https://github.com/elastic/kibana/issues/107057 - describe.skip('indexpattern without timefield', () => { + describe('indexpattern without timefield', () => { before(async () => { await security.testUser.setRoles(['kibana_admin', 'kibana_timefield']); await esArchiver.loadIfNeeded( diff --git a/test/functional/apps/management/_runtime_fields.js b/test/functional/apps/management/_runtime_fields.js index 745a3f9b079a4..e2bf15a4db87b 100644 --- a/test/functional/apps/management/_runtime_fields.js +++ b/test/functional/apps/management/_runtime_fields.js @@ -18,7 +18,7 @@ export default function ({ getService, getPageObjects }) { const testSubjects = getService('testSubjects'); // FLAKY: https://github.com/elastic/kibana/issues/95376 - describe.skip('runtime fields', function () { + describe('runtime fields', function () { this.tags(['skipFirefox']); before(async function () { diff --git a/test/functional/apps/management/_scripted_fields.js b/test/functional/apps/management/_scripted_fields.js index 2ff9e55c59ebb..f163535a9e796 100644 --- a/test/functional/apps/management/_scripted_fields.js +++ b/test/functional/apps/management/_scripted_fields.js @@ -41,7 +41,7 @@ export default function ({ getService, getPageObjects }) { 'timePicker', ]); - describe('scripted fields', function () { + describe.skip('scripted fields', function () { this.tags(['skipFirefox']); before(async function () { @@ -154,7 +154,7 @@ export default function ({ getService, getPageObjects }) { }); //add a test to sort numeric scripted field - it('should sort scripted field value in Discover', async function () { + it.skip('should sort scripted field value in Discover', async function () { await testSubjects.click(`docTableHeaderFieldSort_${scriptedPainlessFieldName}`); // after the first click on the scripted field, it becomes secondary sort after time. // click on the timestamp twice to make it be the secondary sort key. @@ -340,7 +340,7 @@ export default function ({ getService, getPageObjects }) { //add a test to sort boolean //existing bug: https://github.com/elastic/kibana/issues/75519 hence the issue is skipped. - it.skip('should sort scripted field value in Discover', async function () { + it('should sort scripted field value in Discover', async function () { await testSubjects.click(`docTableHeaderFieldSort_${scriptedPainlessFieldName2}`); // after the first click on the scripted field, it becomes secondary sort after time. // click on the timestamp twice to make it be the secondary sort key. @@ -415,7 +415,7 @@ export default function ({ getService, getPageObjects }) { //add a test to sort date scripted field //https://github.com/elastic/kibana/issues/75711 - it.skip('should sort scripted field value in Discover', async function () { + it('should sort scripted field value in Discover', async function () { await testSubjects.click(`docTableHeaderFieldSort_${scriptedPainlessFieldName2}`); // after the first click on the scripted field, it becomes secondary sort after time. // click on the timestamp twice to make it be the secondary sort key. diff --git a/test/functional/apps/management/_scripted_fields_preview.js b/test/functional/apps/management/_scripted_fields_preview.js index 6347531b0cda8..0ea4182c3a5fa 100644 --- a/test/functional/apps/management/_scripted_fields_preview.js +++ b/test/functional/apps/management/_scripted_fields_preview.js @@ -14,7 +14,7 @@ export default function ({ getService, getPageObjects }) { const SCRIPTED_FIELD_NAME = 'myScriptedField'; // FLAKY: https://github.com/elastic/kibana/issues/89475 - describe.skip('scripted fields preview', () => { + describe('scripted fields preview', () => { before(async function () { await browser.setWindowSize(1200, 800); await PageObjects.settings.createIndexPattern(); diff --git a/test/functional/apps/management/_test_huge_fields.js b/test/functional/apps/management/_test_huge_fields.js index c8710a79e4fc8..7b75683940928 100644 --- a/test/functional/apps/management/_test_huge_fields.js +++ b/test/functional/apps/management/_test_huge_fields.js @@ -14,7 +14,7 @@ export default function ({ getService, getPageObjects }) { const PageObjects = getPageObjects(['common', 'home', 'settings']); // FLAKY: https://github.com/elastic/kibana/issues/89031 - describe.skip('test large number of fields', function () { + describe('test large number of fields', function () { this.tags(['skipCloud']); const EXPECTED_FIELD_COUNT = '10006'; diff --git a/test/functional/apps/visualize/input_control_vis/chained_controls.ts b/test/functional/apps/visualize/input_control_vis/chained_controls.ts index 2f91c789a478b..77cb4f007bf5b 100644 --- a/test/functional/apps/visualize/input_control_vis/chained_controls.ts +++ b/test/functional/apps/visualize/input_control_vis/chained_controls.ts @@ -19,7 +19,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { // FLAKY: https://github.com/elastic/kibana/issues/96997 // FLAKY: https://github.com/elastic/kibana/issues/100372 - describe.skip('chained controls', function () { + describe('chained controls', function () { this.tags('includeFirefox'); before(async () => { diff --git a/test/functional/apps/visualize/input_control_vis/dynamic_options.ts b/test/functional/apps/visualize/input_control_vis/dynamic_options.ts index 633ba40bb0493..cc6fc001ad897 100644 --- a/test/functional/apps/visualize/input_control_vis/dynamic_options.ts +++ b/test/functional/apps/visualize/input_control_vis/dynamic_options.ts @@ -15,7 +15,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { const comboBox = getService('comboBox'); // FLAKY: https://github.com/elastic/kibana/issues/98974 - describe.skip('dynamic options', () => { + describe('dynamic options', () => { before(async () => { await PageObjects.visualize.initTests(); }); diff --git a/x-pack/test/functional/apps/dashboard_mode/dashboard_empty_screen.js b/x-pack/test/functional/apps/dashboard_mode/dashboard_empty_screen.js index 2adf13db26250..00bdc9ee0d703 100644 --- a/x-pack/test/functional/apps/dashboard_mode/dashboard_empty_screen.js +++ b/x-pack/test/functional/apps/dashboard_mode/dashboard_empty_screen.js @@ -14,7 +14,7 @@ export default function ({ getPageObjects, getService }) { const PageObjects = getPageObjects(['common', 'dashboard', 'visualize', 'lens']); // FLAKY: https://github.com/elastic/kibana/issues/102366 - describe.skip('empty dashboard', function () { + describe('empty dashboard', function () { before(async () => { await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/logstash_functional'); await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/lens/basic'); diff --git a/x-pack/test/functional/apps/grok_debugger/home_page.ts b/x-pack/test/functional/apps/grok_debugger/home_page.ts index da76a80abbd61..423c506c0268f 100644 --- a/x-pack/test/functional/apps/grok_debugger/home_page.ts +++ b/x-pack/test/functional/apps/grok_debugger/home_page.ts @@ -68,7 +68,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { }); // This test will need to be fixed. - it.skip('applies the correct CSS classes', async () => { + it('applies the correct CSS classes', async () => { const grokPattern = '\\[(?:-|%{NUMBER:bytes:int})\\]'; await PageObjects.grokDebugger.setPatternInput(grokPattern); diff --git a/x-pack/test/functional/apps/infra/feature_controls/index.ts b/x-pack/test/functional/apps/infra/feature_controls/index.ts index 5bf6432b1c52f..dcb7bcfd448fa 100644 --- a/x-pack/test/functional/apps/infra/feature_controls/index.ts +++ b/x-pack/test/functional/apps/infra/feature_controls/index.ts @@ -9,7 +9,7 @@ import { FtrProviderContext } from '../../../ftr_provider_context'; export default function ({ loadTestFile }: FtrProviderContext) { // FLAKY: https://github.com/elastic/kibana/issues/35932 - describe.skip('feature controls', function () { + describe('feature controls', function () { this.tags('skipFirefox'); loadTestFile(require.resolve('./infrastructure_security')); loadTestFile(require.resolve('./infrastructure_spaces')); diff --git a/x-pack/test/functional/apps/infra/home_page.ts b/x-pack/test/functional/apps/infra/home_page.ts index 90b34702767e4..4ed06500f8ac3 100644 --- a/x-pack/test/functional/apps/infra/home_page.ts +++ b/x-pack/test/functional/apps/infra/home_page.ts @@ -88,7 +88,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { }); // FLAKY: https://github.com/elastic/kibana/issues/106660 - describe.skip('Saved Views', () => { + describe('Saved Views', () => { before(() => esArchiver.load('x-pack/test/functional/es_archives/infra/metrics_and_logs')); after(() => esArchiver.unload('x-pack/test/functional/es_archives/infra/metrics_and_logs')); it('should have save and load controls', async () => { diff --git a/x-pack/test/functional/apps/infra/metrics_explorer.ts b/x-pack/test/functional/apps/infra/metrics_explorer.ts index 5a8d7da628259..90a875a07f8a7 100644 --- a/x-pack/test/functional/apps/infra/metrics_explorer.ts +++ b/x-pack/test/functional/apps/infra/metrics_explorer.ts @@ -88,7 +88,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { }); // FLAKY: https://github.com/elastic/kibana/issues/106651 - describe.skip('Saved Views', () => { + describe('Saved Views', () => { before(() => esArchiver.load('x-pack/test/functional/es_archives/infra/metrics_and_logs')); after(() => esArchiver.unload('x-pack/test/functional/es_archives/infra/metrics_and_logs')); describe('save functionality', () => { diff --git a/x-pack/test/functional/apps/maps/feature_controls/maps_spaces.ts b/x-pack/test/functional/apps/maps/feature_controls/maps_spaces.ts index 5e3e3d7142c10..92aa60799d04f 100644 --- a/x-pack/test/functional/apps/maps/feature_controls/maps_spaces.ts +++ b/x-pack/test/functional/apps/maps/feature_controls/maps_spaces.ts @@ -14,7 +14,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) { const appsMenu = getService('appsMenu'); // FLAKY: https://github.com/elastic/kibana/issues/38414 - describe.skip('spaces feature controls', () => { + describe('spaces feature controls', () => { before(async () => { PageObjects.maps.setBasePath('/s/custom_space'); }); diff --git a/x-pack/test/functional/apps/maps/layer_errors.js b/x-pack/test/functional/apps/maps/layer_errors.js index 64973461c107b..b0c029ac807ca 100644 --- a/x-pack/test/functional/apps/maps/layer_errors.js +++ b/x-pack/test/functional/apps/maps/layer_errors.js @@ -90,7 +90,7 @@ export default function ({ getPageObjects }) { // Flaky test on cloud and windows when run against a snapshot build of 7.11. // https://github.com/elastic/kibana/issues/91043 - it.skip('should diplay error message in layer panel', async () => { + it('should diplay error message in layer panel', async () => { const errorMsg = await PageObjects.maps.getLayerErrorText(LAYER_NAME); expect(errorMsg).to.equal( `Unable to find EMS tile configuration for id: ${MISSING_EMS_ID}. Kibana is unable to access Elastic Maps Service. Contact your system administrator.` diff --git a/x-pack/test/functional/apps/ml/data_frame_analytics/feature_importance.ts b/x-pack/test/functional/apps/ml/data_frame_analytics/feature_importance.ts index 91d7b0a9347e2..0ce3303bb6aae 100644 --- a/x-pack/test/functional/apps/ml/data_frame_analytics/feature_importance.ts +++ b/x-pack/test/functional/apps/ml/data_frame_analytics/feature_importance.ts @@ -184,7 +184,7 @@ export default function ({ getService }: FtrProviderContext) { for (const testData of testDataList) { // FLAKY: https://github.com/elastic/kibana/issues/93188 - describe.skip(`${testData.suiteTitle}`, function () { + describe(`${testData.suiteTitle}`, function () { before(async () => { await ml.navigation.navigateToMl(); await ml.navigation.navigateToDataFrameAnalytics(); diff --git a/x-pack/test/functional/apps/monitoring/elasticsearch/nodes.js b/x-pack/test/functional/apps/monitoring/elasticsearch/nodes.js index 1874d973b014c..9333b4b13fe54 100644 --- a/x-pack/test/functional/apps/monitoring/elasticsearch/nodes.js +++ b/x-pack/test/functional/apps/monitoring/elasticsearch/nodes.js @@ -13,7 +13,7 @@ export default function ({ getService, getPageObjects }) { const nodesList = getService('monitoringElasticsearchNodes'); const esClusterSummaryStatus = getService('monitoringElasticsearchSummaryStatus'); - describe('Elasticsearch nodes listing', function () { + describe.skip('Elasticsearch nodes listing', function () { // FF issue: https://github.com/elastic/kibana/issues/35551 this.tags(['skipFirefox']); @@ -260,7 +260,7 @@ export default function ({ getService, getPageObjects }) { }); // FLAKY: https://github.com/elastic/kibana/issues/100438 - describe.skip('with only online nodes', () => { + describe('with only online nodes', () => { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { diff --git a/x-pack/test/functional/apps/monitoring/elasticsearch/nodes_mb.js b/x-pack/test/functional/apps/monitoring/elasticsearch/nodes_mb.js index a031b828e2632..cb93b612626c7 100644 --- a/x-pack/test/functional/apps/monitoring/elasticsearch/nodes_mb.js +++ b/x-pack/test/functional/apps/monitoring/elasticsearch/nodes_mb.js @@ -13,7 +13,7 @@ export default function ({ getService, getPageObjects }) { const nodesList = getService('monitoringElasticsearchNodes'); const esClusterSummaryStatus = getService('monitoringElasticsearchSummaryStatus'); - describe('Elasticsearch nodes listing mb', function () { + describe.skip('Elasticsearch nodes listing mb', function () { // FF issue: https://github.com/elastic/kibana/issues/35551 this.tags(['skipFirefox']); diff --git a/x-pack/test/functional/apps/monitoring/elasticsearch/overview.js b/x-pack/test/functional/apps/monitoring/elasticsearch/overview.js index c539ca0b2623b..6abd462777137 100644 --- a/x-pack/test/functional/apps/monitoring/elasticsearch/overview.js +++ b/x-pack/test/functional/apps/monitoring/elasticsearch/overview.js @@ -13,7 +13,7 @@ export default function ({ getService, getPageObjects }) { const overview = getService('monitoringElasticsearchOverview'); const esClusterSummaryStatus = getService('monitoringElasticsearchSummaryStatus'); - describe('Elasticsearch overview', () => { + describe.skip('Elasticsearch overview', () => { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { diff --git a/x-pack/test/functional/apps/monitoring/elasticsearch/overview_mb.js b/x-pack/test/functional/apps/monitoring/elasticsearch/overview_mb.js index d93a2c3e77b93..fd529e3c1a0b0 100644 --- a/x-pack/test/functional/apps/monitoring/elasticsearch/overview_mb.js +++ b/x-pack/test/functional/apps/monitoring/elasticsearch/overview_mb.js @@ -13,7 +13,7 @@ export default function ({ getService, getPageObjects }) { const overview = getService('monitoringElasticsearchOverview'); const esClusterSummaryStatus = getService('monitoringElasticsearchSummaryStatus'); - describe('Elasticsearch overview mb', () => { + describe.skip('Elasticsearch overview mb', () => { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { diff --git a/x-pack/test/functional/apps/monitoring/time_filter.js b/x-pack/test/functional/apps/monitoring/time_filter.js index 910b91d07039d..9f629b9960998 100644 --- a/x-pack/test/functional/apps/monitoring/time_filter.js +++ b/x-pack/test/functional/apps/monitoring/time_filter.js @@ -29,7 +29,7 @@ export default function ({ getService, getPageObjects }) { }); // FLAKY: https://github.com/elastic/kibana/issues/48910 - it.skip('should send another request when clicking Refresh', async () => { + it('should send another request when clicking Refresh', async () => { await testSubjects.click('querySubmitButton'); const isLoading = await PageObjects.header.isGlobalLoadingIndicatorVisible(); expect(isLoading).to.be(true); @@ -37,7 +37,7 @@ export default function ({ getService, getPageObjects }) { // TODO: [cr] I'm not sure this test is any better than the above one, we might need to rely solely on unit tests // for this functionality - it.skip('should send another request when changing the time picker', async () => { + it('should send another request when changing the time picker', async () => { await PageObjects.timePicker.setAbsoluteRange( 'Aug 15, 2016 @ 21:00:00.000', 'Aug 16, 2016 @ 00:00:00.000' diff --git a/x-pack/test/functional/apps/observability/feature_controls/observability_security.ts b/x-pack/test/functional/apps/observability/feature_controls/observability_security.ts index 1d52088ede3da..b2e0459c303a4 100644 --- a/x-pack/test/functional/apps/observability/feature_controls/observability_security.ts +++ b/x-pack/test/functional/apps/observability/feature_controls/observability_security.ts @@ -207,7 +207,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) { await PageObjects.observability.expectForbidden(); }); - it.skip(`create new case returns a 403`, async () => { + it(`create new case returns a 403`, async () => { await PageObjects.common.navigateToUrl('observabilityCases', 'create', { shouldUseHashForSubUrl: false, }); diff --git a/x-pack/test/functional/apps/security/users.js b/x-pack/test/functional/apps/security/users.js index b471bbaed2fba..eeafc38fa05dc 100644 --- a/x-pack/test/functional/apps/security/users.js +++ b/x-pack/test/functional/apps/security/users.js @@ -13,7 +13,7 @@ export default function ({ getService, getPageObjects }) { const log = getService('log'); // FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/96001 - describe.skip('users', function () { + describe('users', function () { before(async () => { log.debug('users'); await PageObjects.settings.navigateTo(); diff --git a/x-pack/test/functional/apps/spaces/enter_space.ts b/x-pack/test/functional/apps/spaces/enter_space.ts index f708282393d83..1b6fdc751a042 100644 --- a/x-pack/test/functional/apps/spaces/enter_space.ts +++ b/x-pack/test/functional/apps/spaces/enter_space.ts @@ -15,7 +15,7 @@ export default function enterSpaceFunctonalTests({ const PageObjects = getPageObjects(['security', 'spaceSelector']); // FLAKY: https://github.com/elastic/kibana/issues/100570 - describe.skip('Enter Space', function () { + describe('Enter Space', function () { this.tags('includeFirefox'); before(async () => { await esArchiver.load('x-pack/test/functional/es_archives/spaces/enter_space'); diff --git a/x-pack/test/functional/apps/spaces/spaces_selection.ts b/x-pack/test/functional/apps/spaces/spaces_selection.ts index 0b9d1f420c663..cdba9dd455772 100644 --- a/x-pack/test/functional/apps/spaces/spaces_selection.ts +++ b/x-pack/test/functional/apps/spaces/spaces_selection.ts @@ -23,7 +23,7 @@ export default function spaceSelectorFunctionalTests({ ]); // FLAKY: https://github.com/elastic/kibana/issues/99581 - describe.skip('Spaces', function () { + describe('Spaces', function () { this.tags('includeFirefox'); describe('Space Selector', () => { before(async () => { diff --git a/x-pack/test/functional/apps/upgrade_assistant/upgrade_assistant.ts b/x-pack/test/functional/apps/upgrade_assistant/upgrade_assistant.ts index e177c39b2002a..970f2b4d1d96d 100644 --- a/x-pack/test/functional/apps/upgrade_assistant/upgrade_assistant.ts +++ b/x-pack/test/functional/apps/upgrade_assistant/upgrade_assistant.ts @@ -20,7 +20,7 @@ export default function upgradeAssistantFunctionalTests({ const testSubjects = getService('testSubjects'); // Updated for the hiding of the UA UI. - describe('Upgrade Checkup', function () { + describe.skip('Upgrade Checkup', function () { this.tags('skipFirefox'); before(async () => { @@ -40,11 +40,11 @@ export default function upgradeAssistantFunctionalTests({ }); }); - it.skip('allows user to navigate to upgrade checkup', async () => { + it('allows user to navigate to upgrade checkup', async () => { await PageObjects.upgradeAssistant.navigateToPage(); }); - it.skip('allows user to toggle deprecation logging', async () => { + it('allows user to toggle deprecation logging', async () => { log.debug('expect initial state to be ON'); expect(await PageObjects.upgradeAssistant.deprecationLoggingEnabledLabel()).to.be('On'); expect(await PageObjects.upgradeAssistant.isDeprecationLoggingEnabled()).to.be(true); @@ -67,7 +67,7 @@ export default function upgradeAssistantFunctionalTests({ }); }); - it.skip('allows user to open cluster tab', async () => { + it('allows user to open cluster tab', async () => { await PageObjects.upgradeAssistant.navigateToPage(); await PageObjects.upgradeAssistant.clickTab('cluster'); expect(await PageObjects.upgradeAssistant.issueSummaryText()).to.be( @@ -75,7 +75,7 @@ export default function upgradeAssistantFunctionalTests({ ); }); - it.skip('allows user to open indices tab', async () => { + it('allows user to open indices tab', async () => { await PageObjects.upgradeAssistant.navigateToPage(); await PageObjects.upgradeAssistant.clickTab('indices'); expect(await PageObjects.upgradeAssistant.issueSummaryText()).to.be(