Skip to content

Commit

Permalink
Unskipping Dashboard listing functional test (elastic#93843)
Browse files Browse the repository at this point in the history
* fixes elastic#74449

* unskipping to check the flakiness
  • Loading branch information
rashmivkulkarni committed Mar 9, 2021
1 parent 57dd7d0 commit 5269f59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/apps/dashboard/dashboard_listing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 () {
Expand Down Expand Up @@ -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';
Expand Down

0 comments on commit 5269f59

Please sign in to comment.