(file, content)
| 17 | } |
| 18 | |
| 19 | function write(file, content) { |
| 20 | fs.mkdirSync(path.dirname(file), { recursive: true }); |
| 21 | fs.writeFileSync(file, content); |
| 22 | } |
| 23 | |
| 24 | test('issue #52: skill files with CRLF frontmatter parse correctly', () => { |
| 25 | const dir = freshProject(); |