Skip to content

Commit

Permalink
fix(e2e): add description for measure command
Browse files Browse the repository at this point in the history
  • Loading branch information
Almouro committed Feb 6, 2023
1 parent ba1c094 commit be042c9
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/e2e-performance/src/commands/measure/bin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,16 @@ import { MeasureCommandUI } from "./MeasureCommandUI";

program
.command("measure")
.description("")
.summary("Measure performance of an Android app")
.description(
`Measure performance of an Android app.
Main usage:
flashlight measure
flashlight measure --bundleId com.example.app
Pressing w will write measures to a file that you can exploit with the report command`
)
.option(
"--bundleId <bundleId>",
"Bundle id for the app (e.g. com.twitter.android). Defaults to the currently focused app."
Expand Down

0 comments on commit be042c9

Please sign in to comment.