Unskipping Dashboard listing functional test (#93843) (#94208)

* fixes https://github.com/elastic/kibana/issues/74449

* unskipping to check the flakiness
This commit is contained in:
Rashmi Kulkarni 2021-03-09 20:35:19 -08:00 committed by GitHub
parent 0758011177
commit f6e139f1af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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';