From 4e66e01c73668950b2eaa63fc577bd7928d5ab5e Mon Sep 17 00:00:00 2001 From: Nathan Reese Date: Mon, 30 Jan 2023 15:38:14 -0700 Subject: [PATCH] =?UTF-8?q?unskip=20Failing=20test:=20Chrome=20UI=20Functi?= =?UTF-8?q?onal=20Tests.test/functional/apps/dashboard/group4/dashboard=5F?= =?UTF-8?q?empty=C2=B7ts=20(#149889)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes https://github.com/elastic/kibana/issues/149256 Flaky test runner https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/1824 Fix in https://github.com/elastic/kibana/pull/149582. `await kibanaServer.importExport.unload(kbnDirectory);` is getting the `error ECONNRESET`. Underlining cause determined to be @pgayvallet "Yeah, so apparently it's related to the fact that kibanaServer.importExport.unload calls bulkDelete with the summary from the import file, which is not a valid SO. Not sure why it doesn't constantly crashes on master though, as my changes in https://github.com/elastic/kibana/pull/149582 makes it quite obvious" --- test/functional/apps/dashboard/group4/dashboard_empty.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/functional/apps/dashboard/group4/dashboard_empty.ts b/test/functional/apps/dashboard/group4/dashboard_empty.ts index a0c5202fb4b43..02437b0685694 100644 --- a/test/functional/apps/dashboard/group4/dashboard_empty.ts +++ b/test/functional/apps/dashboard/group4/dashboard_empty.ts @@ -26,8 +26,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await testSubjects.click('saveIndexPatternButton'); }; - // FLAKY: https://github.com/elastic/kibana/issues/149256 - describe.skip('dashboard empty state', () => { + describe('dashboard empty state', () => { const kbnDirectory = 'test/functional/fixtures/kbn_archiver/dashboard/current/kibana'; before(async function () {