kuceb / cypress-plugin-retries

A Cypress plugin to retry failed tests.
MIT License
237 stars 20 forks source link

Retries duplicated in console output #58

Open jprealini opened 4 years ago

jprealini commented 4 years ago

I just started to use the plugin today, everything works fine, only issue I see is that each retry gets two entries in the console...

Search for a candidate
    √ use combined filters to search for a candidate (example #1) (8676ms)
    √ use combined filters to search for a candidate (example #2) (4915ms)
    √ use combined filters to search for a candidate (example #3) (4496ms)
    (retry 1/2 ) use combined filters to search for a candidate (example #4)
    (retry 1/2 ) use combined filters to search for a candidate (example #4)
    (retry 2/2 ) use combined filters to search for a candidate (example #4)
    (retry 2/2 ) use combined filters to search for a candidate (example #4)
    1) use combined filters to search for a candidate (example #4)

Any hint how I can solve this?