diff --git a/packages/kbn-pm/src/commands/bootstrap.test.ts b/packages/kbn-pm/src/commands/bootstrap.test.ts index 956c4e72933ba..479a226839b99 100644 --- a/packages/kbn-pm/src/commands/bootstrap.test.ts +++ b/packages/kbn-pm/src/commands/bootstrap.test.ts @@ -75,7 +75,8 @@ afterEach(() => { jest.restoreAllMocks(); }); -test('handles dependencies of dependencies', async () => { +// FLAKY: https://github.com/elastic/kibana/issues/79891 +test.skip('handles dependencies of dependencies', async () => { const kibana = createProject({ dependencies: { bar: '1.0.0', @@ -141,7 +142,8 @@ test('handles dependencies of dependencies', async () => { `); }); -test('does not run installer if no deps in package', async () => { +// FLAKY: https://github.com/elastic/kibana/issues/79891 +test.skip('does not run installer if no deps in package', async () => { const kibana = createProject({ dependencies: { bar: '1.0.0',