fix: add missing help descriptions on some cmds

This commit is contained in:
2026-03-24 18:27:55 +00:00
parent ecd11767cd
commit 8a573681be
5 changed files with 40 additions and 8 deletions
+3 -2
View File
@@ -8,8 +8,9 @@ import (
func newTestCommand() *cobra.Command {
return &cobra.Command{
Use: "test [path]",
Args: cobra.MaximumNArgs(1),
Use: "test [path]",
Short: "Replay recorded CLI scenarios",
Args: cobra.MaximumNArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
path := ""
if len(args) == 1 {