Open
Description
Tool:
- WDIO + Cucumber
ReportPortal config:
config: {
token: 'token',
endpoint: 'endpoint',
launch: 'QA Web Tests',
project: 'project',
mode: 'DEFAULT',
debug: false,
description: 'description',
attachPicturesToLogs: true,
rerun: true,
cucumberNestedSteps: true,
skippedIssue: true,
},
Turn on rerun: true flag.
Example:
We have two scenarios - one pass and the second one is fail.
If we go into the failed scenario, we can see why it doesn't work after the second run.
In addition, we see the steps from the passed scenario and the steps from the first one that failed.
Expected result:
It would be nice to have both launches of the failed tests and mark the test based on the corresponded latest result.
Example:
- First test failed / Second test passed - Result: passed
- First test failed / Second test failed - Result: failed