-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
"no tests found" when running master on Windows #1462
Comments
I've encountered that using the latest versions and this configuration:
I've solved it by uninstalling and installing |
@cristian-sima - Yeah, this bug is only present in the latest alpha versions / master. The latest stable release (14.1.0) does not have the problem. |
the problem is definately: b56e368 the escape for the regex is incorrect Escaping the the paths on windows creates a regex with to many
|
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
"NO TESTS FOUND" is showing up when I run
node packages/jest-cli/bin/jest.js packages\jest-jasmine2\src\__tests__\iterators-test.js
It looks like there were two separate issues causing this. Initially this bisected to 6c76202. I could fix it by adjusting the
testRegex
from.*-test.\\js
to.*-test\\.js
, but master was broken even with that patch. Bisecting again after applying that patch, it blames to b56e368The text was updated successfully, but these errors were encountered: