From cfb8c42f624eb71d461528677eef869732152d1c Mon Sep 17 00:00:00 2001 From: Kit Langton Date: Sat, 23 May 2026 20:48:31 -0400 Subject: [PATCH] test(skill): simplify fixture writes --- packages/opencode/test/skill/skill.test.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/opencode/test/skill/skill.test.ts b/packages/opencode/test/skill/skill.test.ts index c8341ce62e..9b3c5e4575 100644 --- a/packages/opencode/test/skill/skill.test.ts +++ b/packages/opencode/test/skill/skill.test.ts @@ -162,7 +162,6 @@ description: Second test skill. `, ), ], - { concurrency: "unbounded" }, ) const list = (yield* Skill.use.all()).filter((s) => s.location !== "") @@ -385,7 +384,6 @@ description: A skill in the .agents/skills directory. `, ), ], - { concurrency: "unbounded" }, ) const list = (yield* Skill.use.all()).filter((s) => s.location !== "") @@ -425,7 +423,6 @@ description: A skill in the .agents/skills directory. `, ), ], - { concurrency: "unbounded" }, ) const list = (yield* Skill.use.all()).filter((s) => s.location !== "") @@ -474,7 +471,6 @@ description: A skill in the .opencode/skill directory. `, ), ], - { concurrency: "unbounded" }, ) const list = (yield* Skill.use.all()).filter((s) => s.location !== "") @@ -534,7 +530,6 @@ description: A skill in the .opencode/skills directory. `, ), ], - { concurrency: "unbounded" }, ) expect((yield* Skill.use.dirs()).length).toBe(4)