Gleb Bahmutov
Gleb Bahmutov
ughh, I would need a runnable example to debug this
Can you try now - I just checked a similar recursive example and it is working
Can you give me a small repo with a reproducible example?
I don't see anything that is obviously wrong, and debugging this problem is beyond the time I have right now. Any help with this is appreciated
Sorry everyone, no updates, the https://github.com/triori/badeball_cypress-if repo is good, but there is way too much going on for me to immediately see the problem :( Anyone wants to look into...
Can you give me a small repo with a reproducible example?
I don't think I have enough information to answer this question
`before` hook runs only once before all tests. You probably want to run it in `beforeEach` hook
Can you provide a public repo showing the problem? If there is none, can you make one with just the issue?
@ryan-g2 you cannot create tests dynamically (from a `cy.request` response for example), the data should be static, and all tests should exists _before_ hooks start running. You could make a...