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
Ava is a great library and enjoy using it. I would love to be able to overwrite the excludePatterns property of the lib/ava-files.js script as it currently always set to the default of [ '!**/node_modules/**', '!**/fixtures/**', '!**/helpers/**' ] at line 118. Because I use the helpers directory name in my library and would like my test directory to follow a similar structure. As a result the directories becomes easier to navigate and allowing me to prepend an underscore to the actual test helpers would help it stand out and pin it to the top of the test directory.
Agreed, see #909. I've been meaning to summarize my thoughts on our various globbing issues into a concrete proposal but haven't gotten round to it yet.
Ava is a great library and enjoy using it. I would love to be able to overwrite the
excludePatterns
property of thelib/ava-files.js
script as it currently always set to the default of[ '!**/node_modules/**', '!**/fixtures/**', '!**/helpers/**' ]
at line 118. Because I use the helpers directory name in my library and would like my test directory to follow a similar structure. As a result the directories becomes easier to navigate and allowing me to prepend an underscore to the actual test helpers would help it stand out and pin it to the top of the test directory.Currently what my project directory looks like:
What I would to be able to make my project directory look like:
The text was updated successfully, but these errors were encountered: