(command)
| 73 | } |
| 74 | |
| 75 | function splitCommand(command) { |
| 76 | const matches = String(command || '').match(/"[^"]*"|'[^']*'|\S+/g) || []; |
| 77 | return matches.map((part) => part.replace(/^["']|["']$/g, '')); |
| 78 | } |
| 79 | |
| 80 | function runVerification(projectRoot, command) { |
| 81 | if (!command) { |
no outgoing calls
no test coverage detected