| 4 | import { exit } from "process"; |
| 5 | |
| 6 | interface RunOptions { |
| 7 | hexFile: string; |
| 8 | timeout?: number; // timeout in seconds |
| 9 | verbose?: boolean; |
| 10 | } |
| 11 | |
| 12 | function parseArgs(): RunOptions { |
| 13 | const args = process.argv.slice(2); |
nothing calls this directly
no outgoing calls
no test coverage detected