diff --git a/src/plugins/vis_type_vega/public/vega_visualization.test.js b/src/plugins/vis_type_vega/public/vega_visualization.test.js index 837fdf2a9aea3..a2214e139a296 100644 --- a/src/plugins/vis_type_vega/public/vega_visualization.test.js +++ b/src/plugins/vis_type_vega/public/vega_visualization.test.js @@ -100,7 +100,8 @@ describe('VegaVisualizations', () => { mockHeight.mockRestore(); }); - test('should show vegalite graph and update on resize (may fail in dev env)', async () => { + // SKIP: https://github.com/elastic/kibana/issues/83385 + test.skip('should show vegalite graph and update on resize (may fail in dev env)', async () => { let vegaVis; try { vegaVis = new VegaVisualization(domNode, jest.fn()); @@ -131,7 +132,8 @@ describe('VegaVisualizations', () => { } }); - test('should show vega graph (may fail in dev env)', async () => { + // SKIP: https://github.com/elastic/kibana/issues/83385 + test.skip('should show vega graph (may fail in dev env)', async () => { let vegaVis; try { vegaVis = new VegaVisualization(domNode, jest.fn());