Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 307 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 307 Bytes

Test don't seem to run if the app's root path contains parentheses and testMatch's globs interpolate <rootDir>.

As an example, the following won't run any tests:

cd with-\(parens\)
npm install
npm test

However, this finds tests successfully:

cd without-parens
npm install
npm test