(filePath)
| 3 | import { describe, it, expect } from 'vitest'; |
| 4 | |
| 5 | function readSource(filePath) { |
| 6 | return fs.readFileSync(path.resolve(filePath), 'utf8'); |
| 7 | } |
| 8 | |
| 9 | function sourceBetween(source, startMarker, endMarker) { |
| 10 | const start = source.indexOf(startMarker); |
no outgoing calls
no test coverage detected