| 624 | } |
| 625 | |
| 626 | const call = async args => { |
| 627 | const parsed = parseArgs(args) |
| 628 | const report = await getRuntimeReport(parsed) |
| 629 | |
| 630 | return { |
| 631 | type: 'text', |
| 632 | value: parsed.json |
| 633 | ? JSON.stringify(report, null, 2) |
| 634 | : renderTextReport(report), |
| 635 | } |
| 636 | } |
| 637 | |
| 638 | const env = { |
| 639 | type: 'local', |
no test coverage detected