From 062f9b6dbf567aff051913bd1f5868ebf869d5f6 Mon Sep 17 00:00:00 2001 From: Galen Kistler <109082771+gtk-grafana@users.noreply.github.com> Date: Fri, 15 Nov 2024 08:47:00 -0600 Subject: [PATCH] Loki: skip tests that are flaking in CI (#96551) test: skip tests that are flaking in CI --- .../loki/querybuilder/components/LokiQueryCodeEditor.test.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/app/plugins/datasource/loki/querybuilder/components/LokiQueryCodeEditor.test.tsx b/public/app/plugins/datasource/loki/querybuilder/components/LokiQueryCodeEditor.test.tsx index c1ceab32eea..305e38c24d5 100644 --- a/public/app/plugins/datasource/loki/querybuilder/components/LokiQueryCodeEditor.test.tsx +++ b/public/app/plugins/datasource/loki/querybuilder/components/LokiQueryCodeEditor.test.tsx @@ -27,7 +27,8 @@ const createDefaultProps = () => { return props; }; -describe('LokiQueryCodeEditor', () => { +// Tests with Monaco are occasionally flaking in CI see #incident-2024-11-13-enterprise-drone-pipeline-failing. Skipping for now. +describe.skip('LokiQueryCodeEditor', () => { it('shows explain section when showExplain is true', async () => { const props = createDefaultProps(); props.showExplain = true;