From 5269f59da9f7e3e727965fc39b84a9a0e28d1822 Mon Sep 17 00:00:00 2001 From: Rashmi Kulkarni Date: Tue, 9 Mar 2021 13:31:32 -0800 Subject: [PATCH] Unskipping Dashboard listing functional test (#93843) * fixes https://github.com/elastic/kibana/issues/74449 * unskipping to check the flakiness --- test/functional/apps/dashboard/dashboard_listing.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/apps/dashboard/dashboard_listing.ts b/test/functional/apps/dashboard/dashboard_listing.ts index 86a3aac1f32c24..d73c6cf0b98994 100644 --- a/test/functional/apps/dashboard/dashboard_listing.ts +++ b/test/functional/apps/dashboard/dashboard_listing.ts @@ -16,7 +16,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { const listingTable = getService('listingTable'); // FLAKY: https://github.com/elastic/kibana/issues/86948 - describe.skip('dashboard listing page', function describeIndexTests() { + describe('dashboard listing page', function describeIndexTests() { const dashboardName = 'Dashboard Listing Test'; before(async function () { @@ -126,7 +126,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { expect(onDashboardLandingPage).to.equal(false); }); - it.skip('title match is case insensitive', async function () { + it('title match is case insensitive', async function () { await PageObjects.dashboard.gotoDashboardLandingPage(); const currentUrl = await browser.getCurrentUrl(); const newUrl = currentUrl + '&title=two%20words';