mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
skip flaky suite (#58970)
This commit is contained in:
parent
6a02b3a024
commit
b95abbae45
1 changed files with 6 additions and 4 deletions
|
@ -19,11 +19,12 @@ import { ReactWrapper } from 'enzyme';
|
||||||
const actionTypeRegistry = actionTypeRegistryMock.create();
|
const actionTypeRegistry = actionTypeRegistryMock.create();
|
||||||
const alertTypeRegistry = alertTypeRegistryMock.create();
|
const alertTypeRegistry = alertTypeRegistryMock.create();
|
||||||
|
|
||||||
describe('alert_add', () => {
|
// FLAKY: https://github.com/elastic/kibana/issues/58970
|
||||||
|
describe.skip('alert_add', () => {
|
||||||
let deps: AppDeps | null;
|
let deps: AppDeps | null;
|
||||||
let wrapper: ReactWrapper<any>;
|
let wrapper: ReactWrapper<any>;
|
||||||
|
|
||||||
beforeAll(async () => {
|
async function setup() {
|
||||||
const mockes = coreMock.createSetup();
|
const mockes = coreMock.createSetup();
|
||||||
const [
|
const [
|
||||||
{
|
{
|
||||||
|
@ -108,9 +109,10 @@ describe('alert_add', () => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
await waitForRender(wrapper);
|
await waitForRender(wrapper);
|
||||||
});
|
}
|
||||||
|
|
||||||
it('renders alert add flyout', () => {
|
it('renders alert add flyout', async () => {
|
||||||
|
await setup();
|
||||||
expect(wrapper.find('[data-test-subj="addAlertFlyoutTitle"]').exists()).toBeTruthy();
|
expect(wrapper.find('[data-test-subj="addAlertFlyoutTitle"]').exists()).toBeTruthy();
|
||||||
expect(wrapper.find('[data-test-subj="saveAlertButton"]').exists()).toBeTruthy();
|
expect(wrapper.find('[data-test-subj="saveAlertButton"]').exists()).toBeTruthy();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue