(error: unknown)
| 73 | } |
| 74 | |
| 75 | if (groupName === 'version' || groupName === '--version' || groupName === '-v') { |
| 76 | await printVersions(initOptions); |
| 77 | return; |
| 78 | } |
| 79 | |
| 80 | const command = getCommand(commands, groupName, commandName); |
| 81 | const { options, args } = getCommandArguments(command, argv); |
| 82 | return { command, options, args }; |
| 83 | } |
| 84 | |
| 85 | function verifyAuthentication(command: Command, session: CliSession) { |
no test coverage detected