File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export class RunDiscovery implements CommandModule {
49
49
normalize : true ,
50
50
requiresArg : true ,
51
51
describe :
52
- "A collection your app's http/websockets logs into HAR file. " +
52
+ "A collection of your app's http/websockets logs into HAR file. " +
53
53
'Usually you can use browser dev tools or our browser web extension'
54
54
} )
55
55
. option ( 'crawler' , {
@@ -86,13 +86,15 @@ export class RunDiscovery implements CommandModule {
86
86
. option ( 'concurrency' , {
87
87
number : true ,
88
88
default : 10 ,
89
- describe : 'Number of requests to send concurrently.' ,
89
+ describe :
90
+ 'Number of maximum concurrent requests allowed to be sent to the target, can range between 1 to 50 (default: 10).' ,
90
91
requiresArg : true
91
92
} )
92
93
. option ( 'interactions-depth' , {
93
94
number : true ,
94
95
default : 3 ,
95
- describe : 'Maximum depth of interactions to crawl. Range is 1 to 5.' ,
96
+ describe :
97
+ 'Number of maximum interactions with nested objects, can range between 1 to 5 (default: 3).' ,
96
98
requiresArg : true
97
99
} )
98
100
. middleware ( ( args : Arguments ) =>
You can’t perform that action at this time.
0 commit comments