Skipping flaky tests (#143700)

This commit is contained in:
Jonathan Buttner 2022-10-19 16:37:26 -04:00 committed by GitHub
parent c8a0376eaf
commit 9b2708cd45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,7 +36,7 @@ describe('SuggestUsersPopover', () => {
};
});
it('calls onUsersChange when 1 user is selected', async () => {
it.skip('calls onUsersChange when 1 user is selected', async () => {
const onUsersChange = jest.fn();
const props = { ...defaultProps, onUsersChange };
appMockRender.render(<SuggestUsersPopover {...props} />);
@ -182,7 +182,7 @@ describe('SuggestUsersPopover', () => {
expect(screen.getByText('1 assigned')).toBeInTheDocument();
});
it('shows the 1 assigned total after clicking on a user', async () => {
it.skip('shows the 1 assigned total after clicking on a user', async () => {
appMockRender.render(<SuggestUsersPopover {...defaultProps} />);
await waitForEuiPopoverOpen();