Newman: In Newman, Do we have the option for `--reporter-cli-no-failures` in the CLI LIBRARY to run from the script file.

Created on 7 Sep 2018  路  2Comments  路  Source: postmanlabs/newman

question

Most helpful comment

@SowmyaT You can set options for reporter using options.reporter.

Like in this case:

{
  ...
  reporter: {
    cli: {
      noFailures: true
    }
  }
  ...
}

All 2 comments

@SowmyaT You can set options for reporter using options.reporter.

Like in this case:

{
  ...
  reporter: {
    cli: {
      noFailures: true
    }
  }
  ...
}

@codenirvana Thanks !

Was this page helpful?
0 / 5 - 0 ratings