Hi
This was specified in my profile
const defaultConfiguration = [
'--tags "not @ignore"',
' -f json:' + reportCapturePath + '/cucumber_report.json',
' -f ../node_modules/cucumber-pretty',
' -f ../node_modules/cucumber-junit-formatter:' + reportCapturePath + '/cucumber_report.xml'
];
const ui = [
'--tags @ui',
...defaultConfiguration
].join(' ');
I was completely forgotten that also formatters were defined in the profile.
I removed the obsolete cucumber-pretty formatter -> still failing
I removed the junit formatter -> now it works - have to see what we are going to do with this
Thanks for the inside
Regards Marco