From bd084396f9bb7319dd8f6a5f6b4e74cb107b9318 Mon Sep 17 00:00:00 2001
From: Tyler Smalley <tyler.smalley@elastic.co>
Date: Sat, 14 Nov 2020 13:48:20 -0800
Subject: [PATCH] Skips Vega test

https://github.com/elastic/kibana/issues/83385

Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
---
 src/plugins/vis_type_vega/public/vega_visualization.test.js | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

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());