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
Let's say I write an API that does A and AB, where AB relies on A. I then write test A', which has some setup steps. As I'm writing AB', it would be very useful to run A' including all its setup steps. Otherwise, I have to copy-paste the setup steps every time I call A' as a method.
The text was updated successfully, but these errors were encountered:
I think you actually want to be able to execute another named scenario as a test-setup step for a scenario (whoa recursive possibilities). This would basically let you create multiple-test canned requests, except they're also test scenarios (thus tests can build on previous tests). Sounds cool.
Let's say I write an API that does A and AB, where AB relies on A. I then write test A', which has some setup steps. As I'm writing AB', it would be very useful to run A' including all its setup steps. Otherwise, I have to copy-paste the setup steps every time I call A' as a
method
.The text was updated successfully, but these errors were encountered: