Note: this is a fork of Vanare/behat-cucumber-formatter. As the original project seems unmaintained and there is no possibility to contact the owner, I publish the library under my handle. Many thanks to the original team of Vanare for starting this great library!
This is Behat extension for generating json reports for Cucumber Test Result Plugin which provides graphs over time and drill down to individual results using the standard Jenkins test reporting mechanism.
-
PHP 7.3 or higher
-
Behat 3.x
$ composer require --dev cawolf/behat-cucumber-json-formatter
Setup extension by specifying your behat.yml
:
default:
extensions:
Vanare\BehatCucumberJsonFormatter\Extension:
fileNamePrefix: report
resultFilePerSuite: true
outputDir: %paths.base%/build/tests
Then you can run:
bin/behat -f cucumber_json
fileNamePrefix
: Filename prefix of generated reportoutputDir
: Generated report will be placed in this directoryfileName
(optional): Filename of generated report - current feature name will be used by default. Only applicable whenresultFilePerSuite
is not enabled.resultFilePerSuite
(optional): The default behaviour is to generate a single report namedall.json
. If this option is set totrue
, a report will be created per behat suite.
MIT Licence