From dc9001835e9d1eab6181d61b369a88ac42d3316a Mon Sep 17 00:00:00 2001 From: Molecule AI Integration Tester Date: Fri, 24 Apr 2026 02:55:51 +0000 Subject: [PATCH] fix(ConfigTab.hermes.test): remove unused fireEvent import --- canvas/src/components/tabs/__tests__/ConfigTab.hermes.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/canvas/src/components/tabs/__tests__/ConfigTab.hermes.test.tsx b/canvas/src/components/tabs/__tests__/ConfigTab.hermes.test.tsx index 8aa1b6fa..a685a2f3 100644 --- a/canvas/src/components/tabs/__tests__/ConfigTab.hermes.test.tsx +++ b/canvas/src/components/tabs/__tests__/ConfigTab.hermes.test.tsx @@ -11,7 +11,7 @@ // Each test pins one invariant. If any fails, the bug is back. import { describe, it, expect, vi, afterEach, beforeEach } from "vitest"; -import { render, screen, fireEvent, cleanup, waitFor } from "@testing-library/react"; +import { render, screen, cleanup, waitFor } from "@testing-library/react"; import React from "react"; afterEach(cleanup);