chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-21 03:37:50 +00:00
parent 39ea816a72
commit d9ed62e51c
12 changed files with 35 additions and 55 deletions

View File

@@ -12,9 +12,8 @@ void Log.init({ print: false })
const it = testEffect(Layer.mergeAll(SessionNs.defaultLayer, Project.defaultLayer, CrossSpawnSpawner.defaultLayer))
const withSession = (input?: Parameters<SessionNs.Interface["create"]>[0]) =>
Effect.acquireRelease(
SessionNs.use.create(input),
(created) => SessionNs.Service.use((session) => session.remove(created.id).pipe(Effect.ignore)),
Effect.acquireRelease(SessionNs.use.create(input), (created) =>
SessionNs.Service.use((session) => session.remove(created.id).pipe(Effect.ignore)),
)
describe("session.listGlobal", () => {