Skip to content

Commit

Permalink
unskip Failing test: Chrome X-Pack UI Functional Tests.x-pack/test/fu…
Browse files Browse the repository at this point in the history
…nctional/apps/dashboard/group2/dashboard_maps_by_value·ts (#168003)

Closes #152476

flaky test runner
https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/3343

Similar to #167836, test is
failing because appsMenu.clickLink is not loading dashboard (see
captured log messages from failure). Switching to
navigateToAppFromAppsMenu to include retry logic.

<img width="500" alt="Screenshot 2023-10-04 at 9 45 46 AM"
src="https://github.com/elastic/kibana/assets/373691/194c4f87-d6dd-4b59-b645-31e01776c7be">
  • Loading branch information
nreese authored Oct 4, 2023
1 parent 634063f commit 45f7042
Showing 1 changed file with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const dashboardPanelActions = getService('dashboardPanelActions');
const testSubjects = getService('testSubjects');
const appsMenu = getService('appsMenu');
const dashboardAddPanel = getService('dashboardAddPanel');
const kibanaServer = getService('kibanaServer');

Expand Down Expand Up @@ -60,10 +59,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
});

if (!saveToDashboard) {
await appsMenu.clickLink('Dashboard', {
category: 'kibana',
closeCollapsibleNav: true,
});
await PageObjects.dashboard.navigateToAppFromAppsMenu();
}
} else {
await PageObjects.maps.clickSaveAndReturnButton();
Expand All @@ -78,8 +74,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
await PageObjects.dashboard.clickNewDashboard();
}

// Failing: See https://github.com/elastic/kibana/issues/152476
describe.skip('dashboard maps by value', function () {
describe('dashboard maps by value', function () {
before(async () => {
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/logstash_functional');
await kibanaServer.importExport.load(
Expand Down

0 comments on commit 45f7042

Please sign in to comment.