()
| 9 | const SKILL_DIR = path.resolve(HERE, '..', 'examples', 'skills', 'ad-studio'); |
| 10 | |
| 11 | async function loadShipped() { |
| 12 | const raw = await fs.readFile(path.join(SKILL_DIR, 'SKILL.md'), 'utf8'); |
| 13 | return parseSkill(raw, 'ad-studio', SKILL_DIR, 'builtin'); |
| 14 | } |
| 15 | |
| 16 | describe('ad-studio bundled skill', () => { |
| 17 | it('parses through the real loader with required fields', async () => { |
no test coverage detected