From f0f2f3b497f9bfa26345cc02f252d69e7727ac88 Mon Sep 17 00:00:00 2001 From: Blomios Date: Thu, 16 Jul 2026 13:29:00 +0200 Subject: [PATCH] =?UTF-8?q?fix(frontend):=20retirer=20l'import=20`vi`=20in?= =?UTF-8?q?utilis=C3=A9=20du=20test=20de=20la=20key=20bar=20(#69)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `npm run build` est `tsc --noEmit && vite build` : un import non utilisé casse le build (TS6133), pas seulement le lint. Co-Authored-By: Claude Opus 4.8 --- frontend/src/features/web/TerminalKeyBar.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/features/web/TerminalKeyBar.test.tsx b/frontend/src/features/web/TerminalKeyBar.test.tsx index 1703562..6661d75 100644 --- a/frontend/src/features/web/TerminalKeyBar.test.tsx +++ b/frontend/src/features/web/TerminalKeyBar.test.tsx @@ -5,7 +5,7 @@ * the chips emit the exact byte sequences a physical key would, and tapping one * never steals focus from xterm (which would collapse the virtual keyboard). */ -import { describe, it, expect, vi } from "vitest"; +import { describe, it, expect } from "vitest"; import { fireEvent, render, screen } from "@testing-library/react"; import type { TerminalInputApi } from "@/features/terminals";