fix: add jest resolver to fix unit tests#2761
Open
azizbecha wants to merge 4 commits intoreact-native-community:mainfrom
Open
fix: add jest resolver to fix unit tests#2761azizbecha wants to merge 4 commits intoreact-native-community:mainfrom
azizbecha wants to merge 4 commits intoreact-native-community:mainfrom
Conversation
Collaborator
Author
thymikee
reviewed
Jan 31, 2026
Comment on lines
+57
to
+60
| const {stdout: fallbackStdout} = await executeCommand( | ||
| `wmic datafile where name="${fallbackPath}" get Version`, | ||
| ); | ||
| version = stdout.replace(/(\r\n|\n|\r)/gm, '').trim(); | ||
| version = fallbackStdout.replace(/(\r\n|\n|\r)/gm, '').trim(); |
Collaborator
Author
There was a problem hiding this comment.
did that to solve prettier warning "'stdout' is already declared in the upper scope on line 34 column 14 @typescript-eslint/no-shadow"
thymikee
reviewed
Jan 31, 2026
| @@ -1,3 +1,6 @@ | |||
| // mock node: prefixed built-in modules for Jest 26 compatibility | |||
| jest.mock('node:zlib', () => require('zlib'), {virtual: true}); | |||
Member
There was a problem hiding this comment.
do we need a resolver if you mock the node:zlib like this?
kundan175
approved these changes
Feb 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Added
resolveris jest config file to fix errorENOENT: no such file or directory, open node:zlib.Test Plan
Running
yarn build && yarn testpasses successfully.Checklist
react-nativecheckout (instructions).