chore: generate

This commit is contained in:
opencode-agent[bot] 2026-06-10 00:39:58 +00:00
commit 6ae6f0fe8f
9 changed files with 61 additions and 67 deletions

View file

@ -40,5 +40,4 @@ describe("Ripgrep", () => {
}),
),
)
})

View file

@ -26,12 +26,8 @@ describe("Ripgrep", () => {
expect(files.map((item) => item.path)).toContain(RelativePath.make(".git/config"))
const matches = yield* ripgrep.grep({ cwd: tmp.path, pattern: "needle", include: "config", limit: 10 })
expect(matches.map((item) => item.entry.path)).toContain(
RelativePath.make(".opencode/config"),
)
expect(matches.map((item) => item.entry.path)).toContain(
RelativePath.make(".git/config"),
)
expect(matches.map((item) => item.entry.path)).toContain(RelativePath.make(".opencode/config"))
expect(matches.map((item) => item.entry.path)).toContain(RelativePath.make(".git/config"))
}),
(tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
),