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
After using the vite test runner there are some features we miss:
Running in watch mode, and being able to re-run all suites under watch (press "a" in watch mode). It cancels any already running tests and re-runs all suites.
Filtering test files directly from watch mode (press "p", type file name)
Ability to re-run all failing tests when under watch mode, not just those touched (press "f")
Any interest in adding these or similar to the ginkgo runner? Of the above the first item would be the simplest and highest value, being able to re-run all suites under watch, and let devs stay in watch mode.
The text was updated successfully, but these errors were encountered:
hey @ebabani these are cool ideas to be sure. i could imagine extending Ginkgo's existing watch mode and you're right that the first one would be relatively easy. For filtering I usually just add an F in front of the Its and Describes that I care about. And the ability to re-run just failing specs is an interesting one. That would definitely be a heavier lift.
This seems adjacent to an idea I've long considered which is to implement a browser-based test runner that allows for much richer interactions with Ginkgo via a sane interface. Lots of cool things could happen here including better feedback during parallel test runs, the ability to quickly filter views of test runs, to rerun/watch specific tests, etc. I don't know if/when it'll happen and everytime I get close to pulling taking the project seriously I remind myself that I'm, personally, ~95% happy with the current CLI experience and wonder whether a web interface would be worth the effort after all :)
But if you'd like to explore extending the current implementation of ginkgo watch and adding support for directing flow via input keys that would be great.
After using the vite test runner there are some features we miss:
Any interest in adding these or similar to the ginkgo runner? Of the above the first item would be the simplest and highest value, being able to re-run all suites under watch, and let devs stay in watch mode.
The text was updated successfully, but these errors were encountered: