(code: string)
| 3 | import { expect, it } from 'vitest' |
| 4 | |
| 5 | function automock(code: string) { |
| 6 | return automockModule(code, 'automock', parseAst).toString() |
| 7 | } |
| 8 | |
| 9 | it('correctly parses function declaration', () => { |
| 10 | expect(automock(` |
no test coverage detected