chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-14 21:32:52 +00:00
parent f202226bbc
commit 9914c9af17

View File

@@ -124,9 +124,7 @@ describe("RuntimeFlags", () => {
it.effect("disableClaudeCodeSkills reads OPENCODE_DISABLE_CLAUDE_CODE_SKILLS", () =>
Effect.gen(function* () {
const flags = yield* readFlags.pipe(
Effect.provide(fromConfig({ OPENCODE_DISABLE_CLAUDE_CODE_SKILLS: "true" })),
)
const flags = yield* readFlags.pipe(Effect.provide(fromConfig({ OPENCODE_DISABLE_CLAUDE_CODE_SKILLS: "true" })))
expect(flags.disableClaudeCodeSkills).toBe(true)
}),