chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-12 19:44:26 +00:00
parent 1d4613006a
commit e46ab34d27
4 changed files with 19 additions and 12 deletions
@@ -101,7 +101,9 @@ describe("Discovery.pull", () => {
const refs = path.join(agentsSdk, "references")
expect(yield* Effect.promise(() => Filesystem.exists(path.join(agentsSdk, "SKILL.md")))).toBe(true)
// agents-sdk has reference files per the index
const refDir = yield* Effect.promise(() => Array.fromAsync(new Bun.Glob("**/*.md").scan({ cwd: refs, onlyFiles: true })))
const refDir = yield* Effect.promise(() =>
Array.fromAsync(new Bun.Glob("**/*.md").scan({ cwd: refs, onlyFiles: true })),
)
expect(refDir.length).toBeGreaterThan(0)
}
}),