Closed collin closed 6 years ago
When the file path arguments to mocha are not wrapped in strings, the operating system expats them into file matches.
If we wrap the arguments in ' quotes, they are passed into mocha and mocha uses a file glob module.
'
This way we need fewer matches to hit all the test files.
@glebec Like so?
When the file path arguments to mocha are not wrapped in strings, the operating system expats them into file matches.
If we wrap the arguments in
'
quotes, they are passed into mocha and mocha uses a file glob module.This way we need fewer matches to hit all the test files.