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
Trying to run a single test with run-multiple, on a single chrome browser just to validate the functionality of retries and only.
What do you get instead?
There are multiple issues here:
retry and only don't mix together as it seems like the test doesn't actually get retried multiple times, if you only have retry the test will get retried multiple times ref other issue raised: Retry can't be used with Only #1256
We're also using mochawesome reporter with unique screenshots, when both rety and only are set, the additional context where the screenshot would be attached is not there (even though the screenshot is taken)
Provide test source code if related
Feature('Failing').retry(3);Scenario.only('Failing test @live @desktop',(I)=>{I.amOnPage('/');I.see('this is going to fail');});
Details
CodeceptJS version: 1.4.4
NodeJS Version: 8.9.1
Operating System: OSX
WebDriverIO: 4.14.0
Basic example config file
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
What are you trying to achieve?
Trying to run a single test with
run-multiple
, on a single chrome browser just to validate the functionality ofretries
andonly
.What do you get instead?
There are multiple issues here:
retry
andonly
don't mix together as it seems like the test doesn't actually get retried multiple times, if you only haveretry
the test will get retried multiple times ref other issue raised: Retry can't be used with Only #1256rety
andonly
are set, the additional context where the screenshot would be attached is not there (even though the screenshot is taken)Details
Basic example config file
The text was updated successfully, but these errors were encountered: