diff --git a/packages/opencode/test/server/httpapi-mcp.test.ts b/packages/opencode/test/server/httpapi-mcp.test.ts index d6dbc56192..bb6635b52f 100644 --- a/packages/opencode/test/server/httpapi-mcp.test.ts +++ b/packages/opencode/test/server/httpapi-mcp.test.ts @@ -64,11 +64,7 @@ function withMcpProject(self: (dir: string) => Effect.Effect) }) } -const readResponse = Effect.fnUntraced(function* (input: { - app: TestApp - path: string - headers: HeadersInit -}) { +const readResponse = Effect.fnUntraced(function* (input: { app: TestApp; path: string; headers: HeadersInit }) { const response = yield* Effect.promise(() => Promise.resolve(input.app.request(input.path, { method: "POST", headers: input.headers })), )