(command: string)
| 77 | const bashTextValue = (dbIndex = 0) => `${getDbIndex(dbIndex)} > `.trimStart() |
| 78 | |
| 79 | const cliCommandWrapper = (command: string) => ( |
| 80 | <span |
| 81 | className="cli-command-wrapper" |
| 82 | data-testid="cli-command-wrapper" |
| 83 | key={Math.random()} |
| 84 | > |
| 85 | {command} |
| 86 | </span> |
| 87 | ) |
| 88 | |
| 89 | const wbSummaryCommand = (command: string, db?: number) => ( |
| 90 | <span className="cli-command-wrapper" data-testid="wb-command"> |