From 2fd91a4f07566e7cf6c27a47f08f19e784e6f1b2 Mon Sep 17 00:00:00 2001 From: Tyler Smalley Date: Sat, 18 Sep 2021 21:21:39 -0700 Subject: [PATCH] skip flaky suite Signed-off-by: Tyler Smalley --- .../kbn-plugin-helpers/src/integration_tests/build.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/kbn-plugin-helpers/src/integration_tests/build.test.ts b/packages/kbn-plugin-helpers/src/integration_tests/build.test.ts index 65cbdaf88034c3..fb556a8eac4a1c 100644 --- a/packages/kbn-plugin-helpers/src/integration_tests/build.test.ts +++ b/packages/kbn-plugin-helpers/src/integration_tests/build.test.ts @@ -34,7 +34,8 @@ beforeEach(async () => { afterEach(async () => await del([PLUGIN_DIR, TMP_DIR])); -it('builds a generated plugin into a viable archive', async () => { +// https://github.com/elastic/kibana/issues/89079 +it.skip('builds a generated plugin into a viable archive', async () => { const generateProc = await execa( process.execPath, ['scripts/generate_plugin', '-y', '--name', 'fooTestPlugin'],