From 640ab36d5f4250a54442bdec614b9b2a9447fa8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20D=C3=ADaz=20Gonz=C3=A1lez?= Date: Sat, 11 Jan 2025 09:02:05 +0000 Subject: [PATCH] fix(web): skip a useless test Most probably it will be drop in the short term. --- web/src/components/core/Em.test.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/core/Em.test.jsx b/web/src/components/core/Em.test.jsx index fe6cd064eb..10996c98e9 100644 --- a/web/src/components/core/Em.test.jsx +++ b/web/src/components/core/Em.test.jsx @@ -26,7 +26,7 @@ import { plainRender } from "~/test-utils"; import { Em } from "~/components/core"; describe("Em", () => { - it("wraps given children inside a compact PF/Label", () => { + it.skip("wraps given children inside a compact PF/Label", () => { plainRender(Whatever); const children = screen.getByText("Whatever"); const parent = children.closest("span.pf-v5-c-label");