Skip to content

Commit

Permalink
skip flaky tests (#79891)
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Oct 7, 2020
1 parent 4bd58ca commit 6ee48d8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/kbn-pm/src/commands/bootstrap.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit 6ee48d8

Please sign in to comment.