Skip to content

Commit

Permalink
[Discover] Unskip context navigation flaky tests (#188811)
Browse files Browse the repository at this point in the history
- Closes #188396
  • Loading branch information
jughosta authored Jul 23, 2024
1 parent 6cfa2c0 commit 9a44464
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions test/functional/apps/context/_context_navigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
});
};

// FLAKY: https://github.com/elastic/kibana/issues/188396
describe.skip('discover - context - back navigation', function contextSize() {
describe('discover - context - back navigation', function contextSize() {
before(async () => {
await PageObjects.timePicker.setDefaultAbsoluteRangeViaUiSettings();
await kibanaServer.uiSettings.update({
Expand Down
4 changes: 2 additions & 2 deletions test/functional/services/data_grid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,9 +324,9 @@ export class DataGridService extends FtrService {
});

if (toggle) {
await toggle.scrollIntoViewIfNecessary();
await toggle.click();
await this.retry.waitFor('doc viewer to open', async () => {
await toggle!.scrollIntoViewIfNecessary();
await toggle!.click();
return this.isShowingDocViewer();
});
} else {
Expand Down

0 comments on commit 9a44464

Please sign in to comment.