Code Monkey home page Code Monkey logo

Comments (5)

kettanaito avatar kettanaito commented on May 24, 2024 1

This is an issue with Jest. Most likely related to structuredClone() and Jest using core-js that doesn't implement structuredClone() correctly and refuses you to give the correctly working global function from Node.js.

Here are a few references that I hope will prove helpful to you:

I'm closing this because I will not look into Jest/JSDOM-related issues (but anyone is welcome to dive into this, I don't mean to discourage you either!). No amount of time I invest into this will make those tools any less broken. If you can, migrate to Vitest. If you can't, raise this in the Jest repo. The more people raise these problems, the more likely Jest will fix them. Nothing we can or should do on MSW's side—it's using valid standard JavaScript.

from msw.

schok-d avatar schok-d commented on May 24, 2024 1

@kettanaito Thank you for your response, from one of the references you have provided in your response, I read that downgrading undici to v5 helped someone. I tried that and apparently I no longer see Axios network error and my test cases seem to be working.

from msw.

kettanaito avatar kettanaito commented on May 24, 2024 1

@schok-d, that's great news! So, it was the structuredClone() issue. Downgrading Undici "helps" in this case because v5 doesn't rely on structuredClone().

from msw.

akmjenkins avatar akmjenkins commented on May 24, 2024

Smells a lot like the whatwg-fetch-esque style problem: using a non-spec compliant Response polyfill

more info about it here:

#2026

if you use the Response global from node >=18 in your test environment I think your issue will be resolved.

I’d be happy to verify if you could post your package.json dependencies and show your relevant test setup files/configuration

from msw.

schok-d avatar schok-d commented on May 24, 2024

Thanks for the response @akmjenkins. One important thing to note here, I generated this project using NX and its using @nx/jest plugin.

I fixed my test environment setup and added jest polyfills(mentioned below) which fixed above issue but now I am getting AxiosNetwork error.

      message: 'Network Error',
      name: 'AxiosError',
      code: 'ERR_NETWORK',
      config: {
        transitional: {
          silentJSONParsing: true,
          forcedJSONParsing: true,
          clarifyTimeoutError: false
        },...

Polyfills


Object.defineProperties(globalThis, {
  TextDecoder: { value: TextDecoder },
  TextEncoder: { value: TextEncoder },
  ReadableStream: { value: ReadableStream }
})

const { Blob, File } = require('node:buffer')
const { fetch, Headers, FormData, Request, Response } = require('undici')

Object.defineProperties(globalThis, {
  fetch: { value: fetch, writable: true },
  Blob: { value: Blob },
  File: { value: File },
  Headers: { value: Headers },
  FormData: { value: FormData },
  Request: { value: Request },
  Response: { value: Response }
})


Everything works perfectly fine if I switched to [email protected].

from msw.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.