Skip to content

Commit

Permalink
improve messages
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed Sep 3, 2024
1 parent 28c7474 commit c0e9f9a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions maestro-cli/src/main/java/maestro/cli/command/TestCommand.kt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ import kotlin.time.Duration.Companion.seconds
import maestro.orchestra.util.Env.withDefaultEnvVars

@CommandLine.Command(
name = "test", description = ["Test a Flow or set of Flows on a local iOS Simulator or Android Emulator"]
name = "test",
description = ["Test a Flow or set of Flows on a local iOS Simulator or Android Emulator"],
)
class TestCommand : Callable<Int> {

Expand All @@ -87,13 +88,13 @@ class TestCommand : Callable<Int> {

@Option(
names = ["--shard-split"],
description = ["Splits the tests across N connected devices"],
description = ["Run the tests across N connected devices, splitting the tests evenly across them"],
)
private var shardSplit: Int? = null

@Option(
names = ["--shard-all"],
description = ["Replicates all the tests across N connected devices"],
description = ["Run all the tests across N connected devices"],
)
private var shardAll: Int? = null

Expand All @@ -119,7 +120,8 @@ class TestCommand : Callable<Int> {
private var output: File? = null

@Option(
names = ["--debug-output"], description = ["Configures the debug output in this path, instead of default"]
names = ["--debug-output"],
description = ["Configures the debug output in this path, instead of default"],
)
private var debugOutput: String? = null

Expand Down

0 comments on commit c0e9f9a

Please sign in to comment.