-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
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
Jest issues tracker #7200
Comments
@sokra To address the CI hanging sometimes, this latest I'll look into other issues once I have a bit more time. |
I can try to answer some of these.
Maybe open up an issue with
That's an odd one, that should get a clearer error after jestjs/jest#5888. The code in the stack doesn't look like that any more. I thought that PR was included in the version you used here, but maybe not.
@rickhanlonii thoughts on that one?
That's available in |
For the skipped tests you could add a custom reporter until we address in core I'm happy to write one for you if you'd like! |
This issue had no activity for at least half a year. It's subject to automatic issue closing if there is no activity in the next 15 days. |
Issue was closed because of inactivity. If you think this is still a valid issue, please file a new issue with additional information. |
@niieani
afterAll
andbeforeAll
are called even if the test cases are skippedrunning test suites with all test cases skipped takes very long time
yarn test:integration -t runtime-chunk --watch
on node.js v10.0.0 (windows) causes this:Investigation: When running jest in watch mode and running the WatchDetection test, sane emits EPERM errors on windows.
sane
doesn't seem to check the ignore list when directories are added (https://github.com/amasad/sane/blob/master/src/node_watcher.js#L310) and reading the stats from a removed file seem to cause an EPERM error here (https://github.com/amasad/sane/blob/master/src/node_watcher.js#L306). I believe it's an sane issue. Although it would also be great if watcher errors would be catched (viawatcher.on("error")
) in jest-haste-map.Could be related to jest-jasmine2...
https://travis-ci.org/webpack/webpack/jobs/374782908
https://travis-ci.org/webpack/webpack/jobs/374782909
https://ci.appveyor.com/project/sokra/webpack/build/1.0.7531/job/7m1jbsafpkt4sh5o
forceExit: true
didn't helpThere is no shortcut for
--testPathPattern
i. e.-p
similar to-t
watch mode with single test suite and a lot of skipped test cases is very spammy
Example:
Prints:
The text was updated successfully, but these errors were encountered: