Skip to content

Commit

Permalink
skip failing jest suites (elastic#139062)
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Aug 17, 2022
1 parent 39d8727 commit 0d77708
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ const defaultProps = {
messageVariables: [],
};

describe('JiraParamsFields renders', () => {
// FLAKY: https://github.com/elastic/kibana/issues/139062
describe.skip('JiraParamsFields renders', () => {
const useGetIssueTypesResponse = {
isLoading: false,
issueTypes: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ const mockErrorLogResponse = {
],
};

describe('rule_event_log_list', () => {
// FLAKY: https://github.com/elastic/kibana/issues/139062
describe.skip('rule_event_log_list', () => {
beforeEach(() => {
jest.clearAllMocks();
useKibanaMock().services.uiSettings.get = jest.fn().mockImplementation((value: string) => {
Expand Down

0 comments on commit 0d77708

Please sign in to comment.