You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
you are referencing the messages.enabled config property, for creating the json output.
I also faced the problem with windows and cucmber-json-formatter (#708)
With omitting the afterRunHandler, now I have the opportunity to skip the ndjson -> json conversion, but as I can see the referenced line should be the following
if (!preprocessor.json.enabled) {
beacuse if I enable messages in config I will get the ndjson file, but if I disable json in config, the condition will met, and will still get a converted json file.
Thanks, adamzoltan
The text was updated successfully, but these errors were encountered:
Hi @badeball,
In
cypress-cucumber-preprocessor/lib/add-cucumber-preprocessor-plugin.ts
Line 72 in be404b9
you are referencing the messages.enabled config property, for creating the json output.
I also faced the problem with windows and cucmber-json-formatter (#708)
With omitting the afterRunHandler, now I have the opportunity to skip the ndjson -> json conversion, but as I can see the referenced line should be the following
if (!preprocessor.json.enabled) {
beacuse if I enable messages in config I will get the ndjson file, but if I disable json in config, the condition will met, and will still get a converted json file.
Thanks, adamzoltan
The text was updated successfully, but these errors were encountered: