Skip to content

Commit f077066

Browse files
authored
[OBX-UX-MGMT] Skip only the flaky test not the suite (#227179)
1 parent 68680ba commit f077066

File tree

1 file changed

+3
-3
lines changed
  • x-pack/test/observability_functional/apps/observability/pages/alerts

1 file changed

+3
-3
lines changed

x-pack/test/observability_functional/apps/observability/pages/alerts/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,7 @@ export default ({ getService, getPageObjects }: FtrProviderContext) => {
7676
},
7777
};
7878

79-
// FLAKY: https://github.com/elastic/kibana/issues/217739
80-
describe.skip('Observability alerts >', function () {
79+
describe('Observability alerts >', function () {
8180
this.tags('includeFirefox');
8281
const testSubjects = getService('testSubjects');
8382
const retry = getService('retry');
@@ -157,7 +156,8 @@ export default ({ getService, getPageObjects }: FtrProviderContext) => {
157156
await observability.alerts.common.submitQuery('');
158157
});
159158

160-
it('Autocompletion works', async () => {
159+
// FLAKY: https://github.com/elastic/kibana/issues/217739
160+
it.skip('Autocompletion works', async () => {
161161
await browser.refresh();
162162
await observability.alerts.common.typeInQueryBar('kibana.alert.s');
163163
await observability.alerts.common.clickOnQueryBar();

0 commit comments

Comments
 (0)