Hi! Is there a way to not run one test "X" until other test "Y" succeeds? It's like a "fast fail" but that starts "X" not from the start of testing process but lazily later.
e
Emil Kantis
10/19/2024, 11:20 AM
Put them in same spec, X after Y? Tests are run sequentially within the spec
g
Gleb Minaev
10/19/2024, 12:43 PM
Ah, got it, thanks! Thought they are run in parallel.