Hi! Is there a way to not run one test "X" until o...
# kotest
g
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
Put them in same spec, X after Y? Tests are run sequentially within the spec
g
Ah, got it, thanks! Thought they are run in parallel.