Skip to content

Commit

Permalink
[Discover] Unskip functional sidebar test (#81188)
Browse files Browse the repository at this point in the history
  • Loading branch information
kertal authored Nov 3, 2020
1 parent 593a607 commit 82ee8ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions test/functional/apps/discover/_sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ export default function ({ getService, getPageObjects }) {
const kibanaServer = getService('kibanaServer');
const PageObjects = getPageObjects(['common', 'discover', 'timePicker']);

// FLAKY: https://github.com/elastic/kibana/issues/80914
describe.skip('discover sidebar', function describeIndexTests() {
describe('discover sidebar', function describeIndexTests() {
before(async function () {
// delete .kibana index and update configDoc
await kibanaServer.uiSettings.replace({
Expand Down
2 changes: 1 addition & 1 deletion test/functional/page_objects/discover_page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ export function DiscoverPageProvider({ getService, getPageObjects }: FtrProvider

public async closeSidebarFieldFilter() {
await testSubjects.click('toggleFieldFilterButton');
await testSubjects.missingOrFail('filterSelectionPanel', { allowHidden: true });
await testSubjects.missingOrFail('filterSelectionPanel');
}

public async waitForChartLoadingComplete(renderCount: number) {
Expand Down

0 comments on commit 82ee8ae

Please sign in to comment.