-
Notifications
You must be signed in to change notification settings - Fork 8
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
move __tests__ into src #83
Comments
Just historical context here, we put them in |
right. the double underscore convention can be preserved, though I find it to be a somewhat "tedious to type" semantic. if the tests are named like |
should note here also that the integration tests will stay where they are until cypress is introduced. |
since the tests are source files, it would be correct to put them in the
src
directory. Also, IDEA has an issue that if the tests are not insrc
than it bails before execution. In Java, it is conventional to have the tests in atest
directory and the tested code to be inmain
within thesrc
directory. This is a pretty solid pattern that might be worth emulating in JS.The text was updated successfully, but these errors were encountered: