Skip to content

Commit

Permalink
Unskip dashboard by value example tests, deescribe.only to test flaki…
Browse files Browse the repository at this point in the history
…ness
  • Loading branch information
ThomThomson committed Oct 27, 2021
1 parent e0fe096 commit 27ae3de
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/examples/embeddables/dashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,18 +97,19 @@ export default function ({ getService, getPageObjects }: PluginFunctionalProvide
const pieChart = getService('pieChart');
const dashboardExpect = getService('dashboardExpect');
const elasticChart = getService('elasticChart');
const PageObjects = getPageObjects(['common', 'visChart']);
const PageObjects = getPageObjects(['common', 'visChart', 'header']);
const monacoEditor = getService('monacoEditor');

// FLAKY: https://github.com/elastic/kibana/issues/116414
describe.skip('dashboard container', () => {
describe.only('dashboard container', () => {
before(async () => {
await esArchiver.loadIfNeeded('test/functional/fixtures/es_archiver/dashboard/current/data');
await esArchiver.loadIfNeeded(
'test/functional/fixtures/es_archiver/dashboard/current/kibana'
);
await PageObjects.common.navigateToApp('dashboardEmbeddableExamples');
await testSubjects.click('dashboardEmbeddableByValue');
await PageObjects.header.waitUntilLoadingHasFinished();

await updateInput(JSON.stringify(testDashboardInput, null, 4));
});

Expand Down

0 comments on commit 27ae3de

Please sign in to comment.