()
| 37 | it('true when AGENTS.md exists AND carries our BEGIN sentinel', () => { |
| 38 | const existsSync = (p: string) => p.endsWith('AGENTS.md'); |
| 39 | const readFileSync = () => `# project\n${MANAGED_SECTION_BEGIN}\n...skill...\n`; |
| 40 | expect(isVerifySkillInstalled('/proj', { existsSync, readFileSync })).toBe(true); |
| 41 | }); |
| 42 |
no outgoing calls
no test coverage detected