From f85af486ee092e89f2fb02711bd92d733538816d Mon Sep 17 00:00:00 2001 From: Tim Roes Date: Wed, 4 Jul 2018 19:41:14 +0200 Subject: [PATCH] Skip flaky vega test (#20127) (#20468) Signed-off-by: Tyler Smalley --- test/functional/apps/visualize/_vega_chart.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/apps/visualize/_vega_chart.js b/test/functional/apps/visualize/_vega_chart.js index bae4701dda01e..e78877b0e1e1d 100644 --- a/test/functional/apps/visualize/_vega_chart.js +++ b/test/functional/apps/visualize/_vega_chart.js @@ -37,7 +37,7 @@ export default function ({ getService, getPageObjects }) { expect(spyToggleExists).to.be(false); }); - it('should have some initial vega spec text', async function () { + it.skip('should have some initial vega spec text', async function () { const vegaSpec = await PageObjects.visualize.getVegaSpec(); expect(vegaSpec).to.contain('{').and.to.contain('data'); expect(vegaSpec.length).to.be.above(500);