Skip to content

v6.2.0

Compare
Choose a tag to compare
@hdorgeval hdorgeval released this 05 Sep 16:52
· 8 commits to master since this release

[6.2.0] - 2020-09-05

Added

  • feat(reporter): be able to set cli options through configuration file

    • you can now use the testcafe-reporter-cucumber-json.json configuration file to set the --reporter-json-folder, --reporter-app-name and --reporter-app-version cli options: add or edit the args section in the json configuration file:
    "args": {
      "appName": false,
      "appVersion": false,
      "reportFolder": "my-custom-folder"
    }

    Every property in args is optional. If you just want to only setup a custom folder:

    "args": {
      "reportFolder": "my-custom-folder"
    }

    Note: The command-line options will take precedence over the configuration file.

https://github.com/hdorgeval/testcafe-reporter-cucumber-json/blob/master/CHANGELOG.md#620---2020-09-05