skip flaky suite (#95899)

This commit is contained in:
Tiago Costa 2021-04-06 02:29:43 +01:00
parent d4b0f92c84
commit d05d5634b3
No known key found for this signature in database
GPG key ID: BAECC2D04A04C6EA

View file

@ -59,7 +59,8 @@ const getWrapper: (name?: WorkpadNames) => ReactWrapper = (name = 'hello') => {
return mount(<App {...{ stage, workpad }} />);
};
describe('<App />', () => {
// FLAKY: https://github.com/elastic/kibana/issues/95899
describe.skip('<App />', () => {
test('App renders properly', () => {
expect(getWrapper().html()).toMatchSnapshot();
});