-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
pass in files to the cli like jest and mocha do by default #1132
Comments
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
The issue has been closed for inactivity. |
Wil be resolved by #1109 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently to specify a specific file you have to do this
to test a folder you have to do this
and there's a PR open to allow for regex #1083 which you will be able to do like this
Both Mocha and Jest have their setups to already support this by simply passing in all extra files at the end of the commands without having to specify
--file
or--specs
.Detox can simplify it's arguments and make it more consistent with both of these testing libraries by following their pattern since commander already supports this simple feature.
This is pretty easy to implement all you would have to do is change this line to be
and then deprecate the
--file
and--specs
so that it shows they're deprecated but will still work.The text was updated successfully, but these errors were encountered: