From 6cf6e61f30ec4fa0510ad8071a061e1c036760ba Mon Sep 17 00:00:00 2001 From: Stratoula Kalafateli Date: Tue, 24 Oct 2023 17:21:10 +0300 Subject: [PATCH] [TSVB] Unskips the rollup test (#169620) ## Summary I unskipped this test and run the tests 100 times https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/3692# The failure doesn't seem to happen so I think we can unskip it. Closes https://github.com/elastic/kibana/issues/168267 --- x-pack/test/functional/apps/rollup_job/tsvb.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x-pack/test/functional/apps/rollup_job/tsvb.js b/x-pack/test/functional/apps/rollup_job/tsvb.js index 5dc4a6c658966..957b33618d9cf 100644 --- a/x-pack/test/functional/apps/rollup_job/tsvb.js +++ b/x-pack/test/functional/apps/rollup_job/tsvb.js @@ -24,8 +24,7 @@ export default function ({ getService, getPageObjects }) { const fromTime = 'Oct 15, 2019 @ 00:00:01.000'; const toTime = 'Oct 15, 2019 @ 19:31:44.000'; - // FLAKY: https://github.com/elastic/kibana/issues/168267 - describe.skip('tsvb integration', function () { + describe('tsvb integration', function () { //Since rollups can only be created once with the same name (even if you delete it), //we add the Date.now() to avoid name collision if you run the tests locally back to back. const rollupJobName = `tsvb-test-rollup-job-${Date.now()}`;