codeceptjs 4.0.0-rc.16 → 4.0.0-rc.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/codecept.js CHANGED
@@ -93,7 +93,14 @@ program
93
93
  .option(commandFlags.config.flag, commandFlags.config.description)
94
94
  .action(commandHandler('../lib/command/interactive.js'))
95
95
 
96
- program.command('list [path]').alias('l').description('List all actions for I.').action(commandHandler('../lib/command/list.js'))
96
+ program
97
+ .command('list [path]')
98
+ .alias('l')
99
+ .description('List all actions for I.')
100
+ .option(commandFlags.config.flag, commandFlags.config.description)
101
+ .option('--docs', 'show documentation for each action')
102
+ .option('--action <name>', 'show docs for a single action (e.g. amOnPage or I.amOnPage)')
103
+ .action(commandHandler('../lib/command/list.js'))
97
104
 
98
105
  program
99
106
  .command('def [path]')
@@ -251,6 +258,8 @@ program
251
258
  .option(commandFlags.steps.flag, commandFlags.steps.description)
252
259
  .option(commandFlags.verbose.flag, commandFlags.verbose.description)
253
260
  .option(commandFlags.debug.flag, commandFlags.debug.description)
261
+ .option('--no-ansi', 'disable colored / ANSI-styled output')
262
+ .option('--numbers', 'prefix each step with a per-test index number')
254
263
  .action(commandHandler('../lib/command/dryRun.js'))
255
264
 
256
265
  program