-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Watch mode filter by filename and by test name #1530
Comments
Sure. Does |
|
Sounds like we should borrow that too 😉 |
@IssueHunt has funded $80.00 to this issue.
|
Hi, Is this still worth working on? I've noticed there is already an option to pass patterns to the watcher but this is using wildcards, do we want to use this instead of regex? |
@radasam it'd be neat, yea! The key change over our current watch mode is being able to take inputs, be it filtering the files or the tests. Whether that has to take the form of Jest' implementation from five years ago, or their current implementation, I do not know. For example a "type some characters and we'll show you a subset of the files / tests that match somehow and then you can run those" could be quite interesting. |
Ok sounds good, I've managed to get something working for filtering by filename, I'm just working on filtering for test names |
Is this something that would still be valuable to have? Do we had any progress or advancements on other stuff that could potentially help implementing this? |
I think so.
The watch implementation was modernized last year, that may make things easier. |
ava@0.22
borrow the idea from
jest
:These two features are very valuable.
They allow me to focus on a subset of tests when I am working on a specific part of the system.
The text was updated successfully, but these errors were encountered: