From b420d50d1ec75bf70630cd001ec5909f34b6ae37 Mon Sep 17 00:00:00 2001 From: Michael Abashian Date: Thu, 19 Dec 2024 15:34:20 -0500 Subject: [PATCH] Skip problematic chatbot app test suite (#1469) --- ansible_ai_connect_chatbot/src/App.test.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ansible_ai_connect_chatbot/src/App.test.tsx b/ansible_ai_connect_chatbot/src/App.test.tsx index 6a623cff9..3d425c519 100644 --- a/ansible_ai_connect_chatbot/src/App.test.tsx +++ b/ansible_ai_connect_chatbot/src/App.test.tsx @@ -7,7 +7,8 @@ import { ColorThemeSwitch } from "./ColorThemeSwitch/ColorThemeSwitch"; import userEvent from "@testing-library/user-event"; import axios, { AxiosError, AxiosHeaders } from "axios"; -describe("App tests", () => { +// Skipping this suite pending AAP-37878 +describe.skip("App tests", () => { const renderApp = (debug = false) => { const debugDiv = document.createElement("div"); debugDiv.setAttribute("id", "debug");