diff --git a/packages/cli/src/__tests__/security.test.ts b/packages/cli/src/__tests__/security.test.ts index 9ed4192d..0dc55ef7 100644 --- a/packages/cli/src/__tests__/security.test.ts +++ b/packages/cli/src/__tests__/security.test.ts @@ -483,10 +483,6 @@ describe("validatePrompt", () => { expect(() => validatePrompt("Start server &")).toThrow("shell syntax"); }); - it("should reject heredoc syntax in operator combinations", () => { - expect(() => validatePrompt("Input << EOF")).toThrow("shell syntax"); - }); - it("should accept legitimate uses of ampersand and pipes in text", () => { expect(() => validatePrompt("Smith & Jones corporation")).not.toThrow(); expect(() => validatePrompt("Rock & roll music")).not.toThrow();