From 296c161286fb32dce5c53c52832b706197236730 Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Fri, 20 Mar 2026 13:07:20 -0700 Subject: [PATCH] fix: update touchfiles test for plan-ceo-review-benefits dependency The merge from main added plan-ceo-review-benefits to E2E_TOUCHFILES, which means plan-ceo-review/SKILL.md now selects 3 tests, not 2. Co-Authored-By: Claude Opus 4.6 --- test/touchfiles.test.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/touchfiles.test.ts b/test/touchfiles.test.ts index d89d533d..11dedb1c 100644 --- a/test/touchfiles.test.ts +++ b/test/touchfiles.test.ts @@ -78,8 +78,9 @@ describe('selectTests', () => { const result = selectTests(['plan-ceo-review/SKILL.md'], E2E_TOUCHFILES); expect(result.selected).toContain('plan-ceo-review'); expect(result.selected).toContain('plan-ceo-review-selective'); - expect(result.selected.length).toBe(2); - expect(result.skipped.length).toBe(Object.keys(E2E_TOUCHFILES).length - 2); + expect(result.selected).toContain('plan-ceo-review-benefits'); + expect(result.selected.length).toBe(3); + expect(result.skipped.length).toBe(Object.keys(E2E_TOUCHFILES).length - 3); }); test('global touchfile triggers ALL tests', () => {