-
-
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 globals differ from Node globals #2549
Comments
This is likely due to the behavior of Does Jest do anything to try to avoid this right now? |
I came across the exact scenario. It's very hard to diagnose. I also came across it with Error objects. Writing wrapper workarounds for this is getting annoying. From the linked nodejs issue:
However, |
Jest team- should the node (and maybe jsdom) environment(s) be changed to put things like Alternatively, maybe babel-jest could transform |
I don't like the babel-jest idea, if something like that is implemented it should be its own plugin. Other than that, I agree. |
We can't pull in the data structures from the parent context because we want to sandbox every test. If you guys could enumerate the places where these foreign objects are coming from, we can wrap those places and emit the correct instances. For example, if |
Is there any risk to the sandboxing added other than "if someone messes with these objects directly, it will affect other tests"? Or is there something inherent in the way the contexts are set up that would make this dangerous passively? Just trying to understand. I'd guess that |
It's one of the guarantees of Jest that two tests cannot conflict with each other, so we cannot change it. The question is where you are getting your Error and Arrays from that are causing trouble. |
They come from node native libraries like fs or http. |
Ah, hmm, that's a good point. It works for primitives but not that well for errors or arrays :( |
What if jest transformed |
meh, I'm not sure I love that :( |
We could override |
I'm ok if this feature only works in newer versions of node. It seems much cleaner to me; assuming it doesn't have negative performance implications. |
Assuming performance seems fine, which globals should it be applied to? |
Yeah, that sounds like a good start. |
I may be able to tackle a PR for this this weekend. I'm assuming we want it in both the node and jsdom environments? |
I've started work on this in https://github.com/suchipi/jest/tree/instanceof_overrides, but am having difficulty reproducing the original issue. @PlasmaPower or @thomashuston do you have a minimal repro I could test against? |
Not sure if it is 100% related or not but I have issues with exports not being considered |
@joedynamite sounds like the same issue |
Why not everything? I'm assuming performance won't be an issue as instanceof shouldn't be called often. |
I ran into a related issue with Express+Supertest+Jest. The 'set-cookie' header comes in with all cookies in a single string rather than a string for each cookie. Here is a reproduction case with the output I'm seeing with Jest and with Mocha (it works with mocha): #3547 (comment) |
Just spent a couple of hours trying to figure out what happened when an app failed in weird ways because of an Basically, http errors seem to not be instances of Error, which is very frustrating. Very simple, reproducible test case here. |
@kettanaito This issue is still present in the latest versions of Jest v29.7.0 and v30.0.0-alpha.3. https://github.com/thomas-huston-zocdoc/jest-fetch-array-bug is still reproducing the issue for Array (with Jest suitably upgraded). In my case, |
…atic fails with "The encoded data was not valid for encoding utf-8" When using Jest instanceof does not work correctly. See: jestjs/jest#2549 Closes: angular#27643
…matic` fails with "The encoded data was not valid for encoding utf-8" When using Jest instanceof does not work correctly. See: jestjs/jest#2549 Closes: angular#27643
…matic` fails with "The encoded data was not valid for encoding utf-8" When using Jest instanceof does not work correctly. See: jestjs/jest#2549 Closes: angular#27643
…matic` fails with "The encoded data was not valid for encoding utf-8" When using Jest instanceof does not work correctly. See: jestjs/jest#2549 Closes: #27643
…matic` fails with "The encoded data was not valid for encoding utf-8" When using Jest instanceof does not work correctly. See: jestjs/jest#2549 Closes: #27643 (cherry picked from commit 7b52b98)
…matic` fails with "The encoded data was not valid for encoding utf-8" When using Jest instanceof does not work correctly. See: jestjs/jest#2549 Closes: #27643 (cherry picked from commit 7b52b98)
Hey Jest Team, Please ensure that Do you have any suggestion how to "patch" this bug now without skipping test and code modification? |
This is wild. Ran into this one today myself. This is exactly why outside of this project I have always avoided Jest or any other testing framework that does weird stuff with globals or any other magical wonkiness (I typically use node-tap). For those down the line who come here and don't want to read all the comments like I did, @kayahr's workaround worked for me (thanks!):
Change Jest config:
|
What about node's native testing now. |
I ran into this while switching to Our code uses The polyfill patches We are currently using |
Do you want to request a feature or report a bug?
Bug
What is the current behavior?
After making a request with Node's
http
package, checking if one of the response headers is aninstanceof Array
fails because theArray
class used insidehttp
seems to differ from the one available in Jest's VM.I specifically came across this when trying to use
node-fetch
in Jest to verify that cookies are set on particular HTTP responses. Theset-cookie
header hits this condition and fails to pass in Jest https://github.com/bitinn/node-fetch/blob/master/lib/headers.js#L38This sounds like the same behavior reported in #2048; re-opening per our discussion there.
If the current behavior is a bug, please provide the steps to reproduce and either a repl.it demo through https://repl.it/languages/jest or a minimal repository on GitHub that we can
yarn install
andyarn test
.https://github.com/thomas-huston-zocdoc/jest-fetch-array-bug
What is the expected behavior?
The global
Array
class instance in Jest should match that of Node's packages so type checks behave as expected.I've submitted a PR to
node-fetch
switching frominstanceof Array
toArray.isArray
to address the immediate issue, but the Jest behavior still seems unexpected and it took quite a while to track down.Please provide your exact Jest configuration and mention your Jest, node, yarn/npm version and operating system.
I am using the default Jest configuration (I have not changed any settings in my
package.json
).Jest - 18.1.0
Node - 6.9.1 (also tested in 4.7.0 and saw the same error)
npm - 3.10.8
OS - Mac OS X 10.11.6
The text was updated successfully, but these errors were encountered: