Skip to content

Commit

Permalink
[Discover] Fix flaky test for "context encoded URL params"
Browse files Browse the repository at this point in the history
  • Loading branch information
jughosta committed May 24, 2022
1 parent 798a8b0 commit 9a77e9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/apps/discover/_context_encoded_url_param.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const testSubjects = getService('testSubjects');
const es = getService('es');

// Failing: See https://github.com/elastic/kibana/issues/132553
describe.skip('encoded URL params in context page', () => {
describe('encoded URL params in context page', () => {
before(async function () {
await security.testUser.setRoles(['kibana_admin', 'context_encoded_param']);
await PageObjects.common.navigateToApp('settings');
Expand All @@ -40,6 +39,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
it('should navigate correctly', async () => {
await PageObjects.discover.selectIndexPattern('context-encoded-param');
await PageObjects.header.waitUntilLoadingHasFinished();
await PageObjects.discover.waitForDocTableLoadingComplete();

// navigate to the context view
await dataGrid.clickRowToggle({ rowIndex: 0 });
Expand Down

0 comments on commit 9a77e9d

Please sign in to comment.