as soon as i add the retry Option, no cli report will be logged on console for failing scenarios.

const settings = {
window: {
width: 1920,
height: 1080
}
};
exports.config = {
tests: "./*/**/*.js",
helpers: {
WebDriver: {
url: "http://localhost:8070",
browser: "chrome",
windowSize: `${settings.window.width}x${settings.window.height}`,
waitForTimeout: 20000,
disableScreenshots: true,
desiredCapabilities: {
chromeOptions: {
binary: require("chromium").path,
args: [
"--headless",
"--lang=en",
"--log-level=3",
"--disable-gpu",
"--disable-dev-shm-usage",
"--no-sandbox",
`--window-size=${settings.window.width},${settings.window.height}`
]
}
}
},
myHelper: {
require: "./helper.js",
},
},
include: {
I: "./custom-steps.js"
},
multiple: {
parallel: {
chunks: 10
}
},
output: "../../../.output-ui-tests"
};
What are you trying to achieve?
we try to get

cli reportabout failing scenario [its only work without retry()]What do you get instead?
as soon as i add the retry Option, no cli report will be logged on console for failing scenarios.

Details
config