From e084ceb4eeddb067c2bf672d7f0819e80ae9401a Mon Sep 17 00:00:00 2001 From: Fermilus-coder Date: Mon, 24 Aug 2026 21:48:33 -0600 Subject: [PATCH] test(cli): add droid to script-path rendering coverage droid's install root (.factory) doesn't match its platform identifier, the same mismatch pattern already covered for codex (.agents). Extends the existing test cases rather than adding new assertions. --- cli/tests/e2e/template-script-paths.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/tests/e2e/template-script-paths.spec.ts b/cli/tests/e2e/template-script-paths.spec.ts index a07e028..b808ef9 100644 --- a/cli/tests/e2e/template-script-paths.spec.ts +++ b/cli/tests/e2e/template-script-paths.spec.ts @@ -6,6 +6,7 @@ const cases = [ ['codex', '.agents/skills/ui-ux-pro-max/scripts/search.py'], ['copilot', '.github/prompts/ui-ux-pro-max/scripts/search.py'], ['kiro', '.kiro/steering/ui-ux-pro-max/scripts/search.py'], + ['droid', '.factory/skills/ui-ux-pro-max/scripts/search.py'], ] as const; const SEARCH_COMMAND_COUNT = 17;