-
-
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
[jest-resolve] Add async resolver support #11540
Conversation
Codecov Report
@@ Coverage Diff @@
## main #11540 +/- ##
==========================================
- Coverage 68.93% 68.79% -0.14%
==========================================
Files 312 312
Lines 16412 16580 +168
Branches 4760 4817 +57
==========================================
+ Hits 11314 11407 +93
- Misses 5071 5146 +75
Partials 27 27
Continue to review full report at Codecov.
|
523cb92
to
28c133e
Compare
@SimenB, do you have any chance to look over this? I know it's a large PR, and I'd be happy to simplify it if you can think of any ways to do so. |
Greetings. Guys what is the status on this important PR? |
Hello! Thank you so much for tackling this issue! Back from vacation now. I'll try to give this a look over the weekend (or next week), but no promises 🙂 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(quick look)
Thanks for the comments, @SimenB. I hope you enjoyed your vacation! I'll do my best to make changes this week or next weekend. I was without power for a few days last week after a big storm, so I'm still catching up on lost time. |
fbbf15a
to
f7dd81b
Compare
I've rebased on latest master, and recombined the classes together. I apologize if there's too much churn in the diff, I still had to keep some methods broken up, and I arranged them in a way that made sense to me and helped me keep track of everything, but moving things around may have caused some churn. |
132aa1e
to
179224d
Compare
@SimenB, is this looking closer to what you want? If so, I will try to keep it rebased on master. |
packages/jest-core/src/lib/__tests__/__snapshots__/logDebugMessages.test.ts.snap
Outdated
Show resolved
Hide resolved
packages/jest-transform/src/__tests__/__snapshots__/ScriptTransformer.test.ts.snap
Outdated
Show resolved
Hide resolved
179224d
to
ea9435a
Compare
Hopefully you haven't started to resolve the conflicts as #12373 is about to basically rewrite the default resolver 🙈 This is due to a bug, so hopefully there are no more bug reports before we get to this PR! |
I haven't started yet, though was planning to this weekend. Procrastination pays off yet again! Thanks for the heads up. |
I took a shot at this and I'll be honest, I'm not sure I am the best one to finish this up. It's been so long since I did this work, I've forgotten what I did, and the new code looks pretty different than before. I've also moved on from trying to use Jest in my own project, so unfortunately I have no personal stake in this work either. I'd be perfectly happy if someone else wants to take this across the finish line, or maybe it just needs to be re-started from scratch, I'm not sure. But I can't really spend any more time on it now, sorry. |
That's perfectly fine @IanVS, thanks! I'll give this a rebase 🙂 |
8cad3be
to
7344e67
Compare
Ok, conflicts resolved. I skipped adding support for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the code turned out quite dirty, this really needs a good refactor at some point (both runtime and resolver).
However, tests are happy, so let's try with this and hope people test it and report any bugs 🙂
Thank you so much for your patience @IanVS!
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Summary
This is a stab at #9505. I would love to use jest in vite, and it sounds like this is the next step towards getting there.
I added async methods in the
Resolver
class and named them ending withAsync
, but I'm not sure if that's the kind of convention you want. It just helped me to keep everything straight, but I'm happy to rename them. Also, I wasn't super-consistent about puttingasync
at the front or back of names, except that nouns I tried to put it at the front and verbs (methods) at the end. Because an option namedresolverAsync
sounded worse thanasyncResolver
. ¯\(ツ)/¯. Again, happy to adjust. Oh, and I didn't rename any of the existing methods, to keep backwards compat.Fixes #9505
Test plan
I have copied the tests from the sync resolver, and adjusted them to work for the new async version. I didn't add any new test cases, though, but I'm happy to do so if there are holes.