Releases: jemishgopani/wdio-json-reporter
WDIO v8 Compatibility
v4.0.1 Fix package checker
Bug Fixes
Add Merge Utility
With WDIO v5 reporter event handling has moved from a consolidated single source to the "sessions" spun up to handle parallel test execution. The benefit is faster execution. The downside is having multiple result files.
This utility will merge all wdio-json-reporter json files into a single file
New Functionality
WDIO v5 Compatibility
Updates the reporter to work with the WDIO v5 reporter
Add option to use stdout
Users now have the option to write to stdout instead of a file. Merge request submitted by @stephen
Bug Fix
New Options
The following options can now be configured in the reporterOptions section of the WDIO conf file.
combined: boolean
- consolidate all JSON reports into a single file
- default value is FALSE
filename: string
- provide a name for the output JSON file
- default value is provided if no name is specified.
Added hooks collection to report
This update is compatible with WDIO version v4.2.11 which contained a change to breakout hooks in the reporter
Replace CID with UUID in file naming
Addresses issue #3 where the CID can contain special characters when there are more than 27 spec files being processed. Instead a UUID is used to ensure unique files are being generated.