(filename: string, content: string)
| 17 | }); |
| 18 | |
| 19 | function writeComponent(filename: string, content: string): string { |
| 20 | const filePath = path.join(tmpDir, filename); |
| 21 | fs.writeFileSync(filePath, content, 'utf8'); |
| 22 | return filePath; |
| 23 | } |
| 24 | |
| 25 | describe('parseComponentFile', () => { |
| 26 | it('parses a simple Component with ViewModel', () => { |
no test coverage detected