chore: generate

This commit is contained in:
opencode-agent[bot] 2026-03-18 02:01:02 +00:00
parent 5dfe86dcb1
commit 0292f1b559
2 changed files with 1 additions and 5 deletions

View File

@ -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

View File

@ -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"])
}),
)