Releases: hdorgeval/testcafe-reporter-cucumber-json
Releases · hdorgeval/testcafe-reporter-cucumber-json
v6.3.0
[6.3.0] - 2021-07-21
Added
-
feat(reporter): be able to set reporter options through environment variables.
- you can now set the
--reporter-json-folder
,--reporter-app-name
and--reporter-app-version
options as variable environments:
process.env['--reporter-json-folder'] = 'my-custom-folder'; process.env['--reporter-app-name'] = 'My App'; process.env['--reporter-app-version'] = 'x.y.z'; // then start tests via the TestCafé Runner
- you can now set the
These environment variables take precedence over the command-line options and over the configuration file.
v6.2.1
v6.2.0
[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 theargs
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.
- you can now use the
v6.1.1
[6.1.1] - 2020-08-06
Fixed
- fix(browserstack): filter errors by testRunId instead of browser name
v6.1.0
v6.0.10
[6.0.10] - 2020-07-19
Fixed
- fix(reporter): report desktop devices from browserstack
v6.0.9
[6.0.9] - 2020-07-19
Fixed
- fix(reporter): process cli options only when defined
v6.0.8
[6.0.8] - 2020-07-19
Fixed
- fix(reporter): report devices from browserstack
v6.0.7
[6.0.7] - 2020-07-16
Fixed
- fix(user-agent): fix user-agent parsing for Internet Explorer
v6.0.6
[6.0.6] - 2020-07-16
Fixed
- fix(reporter): report device on browserstack
- fix(reporter): remove browserstack url from JSON filenames
- fix vulnerabilities