From 90eab6cddc7b9aaf3a357d0dab1f51060a56aa8f Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Sun, 29 Mar 2026 22:54:44 -0700 Subject: [PATCH] test: update plan-design-review chaining test for design skills plan-design-review now chains to /design-shotgun and /design-html in addition to review skills. Update the assertion to match. Co-Authored-By: Claude Opus 4.6 (1M context) --- test/gen-skill-docs.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/gen-skill-docs.test.ts b/test/gen-skill-docs.test.ts index 27672ede..a08a5072 100644 --- a/test/gen-skill-docs.test.ts +++ b/test/gen-skill-docs.test.ts @@ -586,10 +586,12 @@ describe('REVIEW_DASHBOARD resolver', () => { expect(content).toContain('/plan-ceo-review'); }); - test('plan-design-review chaining mentions eng and ceo reviews', () => { + test('plan-design-review chaining mentions eng, ceo, and design skills', () => { const content = fs.readFileSync(path.join(ROOT, 'plan-design-review', 'SKILL.md'), 'utf-8'); expect(content).toContain('/plan-eng-review'); expect(content).toContain('/plan-ceo-review'); + expect(content).toContain('/design-shotgun'); + expect(content).toContain('/design-html'); }); test('ship does NOT contain review chaining', () => {