fix: update glob pattern and path in tool test (#1436)

This commit is contained in:
Yordis Prieto
2025-07-30 16:42:13 -04:00
committed by GitHub
parent f2bac1532b
commit f74cd37818
+2 -2
View File
@@ -21,8 +21,8 @@ describe("tool.glob", () => {
await App.provide({ cwd: projectRoot }, async () => { await App.provide({ cwd: projectRoot }, async () => {
let result = await glob.execute( let result = await glob.execute(
{ {
pattern: "../../node_modules/**/*", pattern: "**/*",
path: undefined, path: "../../node_modules",
}, },
ctx, ctx,
) )