diff --git a/test/gen-skill-docs.test.ts b/test/gen-skill-docs.test.ts index 7396933c..32d1ad81 100644 --- a/test/gen-skill-docs.test.ts +++ b/test/gen-skill-docs.test.ts @@ -354,7 +354,7 @@ describe('REVIEW_DASHBOARD resolver', () => { for (const skill of REVIEW_SKILLS) { test(`review dashboard appears in ${skill} generated file`, () => { const content = fs.readFileSync(path.join(ROOT, skill, 'SKILL.md'), 'utf-8'); - expect(content).toContain('reviews.jsonl'); + expect(content).toContain('gstack-review'); expect(content).toContain('REVIEW READINESS DASHBOARD'); }); } diff --git a/test/skill-validation.test.ts b/test/skill-validation.test.ts index d3ab11e9..13c74841 100644 --- a/test/skill-validation.test.ts +++ b/test/skill-validation.test.ts @@ -1167,7 +1167,7 @@ describe('Codex skill', () => { test('codex/SKILL.md contains review log persistence', () => { const content = fs.readFileSync(path.join(ROOT, 'codex', 'SKILL.md'), 'utf-8'); expect(content).toContain('codex-review'); - expect(content).toContain('reviews.jsonl'); + expect(content).toContain('gstack-review-log'); }); test('codex/SKILL.md uses which for binary discovery, not hardcoded path', () => {