skip flaky jest suite (#134923) (#134922)

This commit is contained in:
spalger 2022-06-22 12:51:52 -05:00
parent 770a2cf6fc
commit 429c14991a

View file

@ -312,7 +312,10 @@ const mockedRulesData = [
beforeEach(() => {
(getIsExperimentalFeatureEnabled as jest.Mock<any, any>).mockImplementation(() => false);
});
describe('Update Api Key', () => {
// FLAKY: https://github.com/elastic/kibana/issues/134922
// FLAKY: https://github.com/elastic/kibana/issues/134923
describe.skip('Update Api Key', () => {
const addSuccess = jest.fn();
const addError = jest.fn();