From f4d238cdbd8a28d270c409c5a82b0f4fb59c6eeb Mon Sep 17 00:00:00 2001 From: Ivan Ortega Alba Date: Wed, 16 Nov 2022 16:41:32 +0100 Subject: [PATCH] Build: Disable flaky RuleEditor frontend test (#58844) --- public/app/features/alerting/unified/RuleEditor.test.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/app/features/alerting/unified/RuleEditor.test.tsx b/public/app/features/alerting/unified/RuleEditor.test.tsx index 9854c4b403e..f57a299869a 100644 --- a/public/app/features/alerting/unified/RuleEditor.test.tsx +++ b/public/app/features/alerting/unified/RuleEditor.test.tsx @@ -102,7 +102,9 @@ const ui = { const getLabelInput = (selector: HTMLElement) => within(selector).getByRole('combobox'); -describe('RuleEditor', () => { +// Until flakiness is fixed +// https://github.com/grafana/grafana/issues/58747 +describe.skip('RuleEditor', () => { beforeEach(() => { jest.clearAllMocks(); contextSrv.isEditor = true;