Skip failing dashboard test #48236 (#48251)

This commit is contained in:
Wylie Conlon 2019-10-15 12:58:21 -04:00 committed by Tyler Smalley
parent 5a5b042136
commit b620f4be70

View file

@ -39,7 +39,8 @@ export default function ({ getService, getPageObjects }) {
expect(addButtonExists).to.be(true);
});
it('should open add panel when add button is clicked', async () => {
// Flaky test: https://github.com/elastic/kibana/issues/48236
it.skip('should open add panel when add button is clicked', async () => {
await testSubjects.click('emptyDashboardAddPanelButton');
const isAddPanelOpen = await dashboardAddPanel.isAddPanelOpen();
expect(isAddPanelOpen).to.be(true);