We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e8c335 commit 09b89fdCopy full SHA for 09b89fd
packages/opencode/src/app/app.ts
@@ -1,3 +1,4 @@
1
+import "zod-openapi/extend"
2
import { Log } from "../util/log"
3
import { Context } from "../util/context"
4
import { Filesystem } from "../util/filesystem"
packages/opencode/test/tool/tool.test.ts
@@ -14,7 +14,7 @@ describe("tool.glob", () => {
14
await App.provide({ cwd: process.cwd() }, async () => {
15
let result = await GlobTool.execute(
16
{
17
- pattern: "./node_modules/**/*",
+ pattern: "../../node_modules/**/*",
18
path: undefined,
19
},
20
ctx,
@@ -33,7 +33,7 @@ describe("tool.glob", () => {
33
)
34
expect(result.metadata).toMatchObject({
35
truncated: false,
36
- count: 2,
+ count: 3,
37
})
38
39
0 commit comments