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