chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-09 04:06:08 +00:00
parent 7f3e51453b
commit 82359c4b1b
2 changed files with 2 additions and 4 deletions

View File

@@ -152,8 +152,7 @@ import { Effect, Layer } from "effect"
import { Account } from "@/account/account"
const failingAccountLayer = Layer.mock(Account.Service, {
orgsByAccount: () =>
Effect.fail(new Account.AccountServiceError({ message: "simulated upstream failure" })),
orgsByAccount: () => Effect.fail(new Account.AccountServiceError({ message: "simulated upstream failure" })),
})
```

View File

@@ -18,8 +18,7 @@ import { Effect, Layer } from "effect"
const ORIG = await import("../../src/account/account")
const failingAccountLayer = Layer.mock(ORIG.Service, {
orgsByAccount: () =>
Effect.fail(new ORIG.AccountServiceError({ message: "simulated upstream failure" })),
orgsByAccount: () => Effect.fail(new ORIG.AccountServiceError({ message: "simulated upstream failure" })),
})
const mocked = {