Browse Source

chore: generate

opencode-agent[bot] 5 months ago
parent
commit
0292f1b559

+ 0 - 1
packages/opencode/src/tool/truncate.ts

@@ -2,7 +2,6 @@ import type { Agent } from "../agent/agent"
 import { runtime } from "@/effect/runtime"
 import { TruncateEffect as S } from "./truncate-effect"
 
-
 export namespace Truncate {
   export const MAX_LINES = S.MAX_LINES
   export const MAX_BYTES = S.MAX_BYTES

+ 1 - 4
packages/opencode/test/account/service.test.ts

@@ -83,10 +83,7 @@ it.effect("orgsByAccount groups orgs per account", () =>
       [AccountID.make("user-1"), [OrgID.make("org-1")]],
       [AccountID.make("user-2"), [OrgID.make("org-2"), OrgID.make("org-3")]],
     ])
-    expect(seen).toEqual([
-      "GET https://one.example.com/api/orgs",
-      "GET https://two.example.com/api/orgs",
-    ])
+    expect(seen).toEqual(["GET https://one.example.com/api/orgs", "GET https://two.example.com/api/orgs"])
   }),
 )