From bedf141c5e546663e91374455a521151ed7bac2d Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sat, 4 Apr 2026 16:12:22 +0900 Subject: [PATCH] fix(ci): include bin tests in CI plan discovery Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- script/run-ci-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/run-ci-tests.ts b/script/run-ci-tests.ts index de07b9077..35b5b142a 100644 --- a/script/run-ci-tests.ts +++ b/script/run-ci-tests.ts @@ -6,7 +6,7 @@ type CiTestPlan = { sharedTestFiles: string[] } -const TEST_ROOTS = ["script", "src"] as const +const TEST_ROOTS = ["bin", "script", "src"] as const const MODULE_MOCK_PATTERN = "mock.module(" async function collectTestFiles(rootDirectory: string): Promise {