Code Monkey home page Code Monkey logo

Comments (1)

kettanaito avatar kettanaito commented on May 28, 2024

Hi, @stevenpollack.

The root cause of this problem is a failing request. In more detail, MSW tries to construct a Request (using global fetch API), and fails with this:

This is because JSDOM, once again, takes away your globals and polyfills AbortController, which is a global present API in both browser and Node.js. Because it's a polyfill, Node.js won't recognize it, and will throw right over here:

The issue is also mentioned in Undici: nodejs/undici#1910 (comment)

  1. Undici does this: https://github.com/nodejs/undici/blob/07fe3609d266ddc2309c303d9d87c001bb534791/lib/fetch/request.js#L414
  2. Then, Node.js does this: https://github.com/nodejs/node/blob/544cfc5ef151bca8d625fbccc581200a77b00bc0/lib/events.js#L943

Solution

The solution is to prevent JSDOM from polyfilling existing globals. Alas, this isn't something we can do on MSW's side. I highly recommend you check that Undici issue and search the JSDOM repo for any recommendations on how to solve thisโ€”it's a bug on their end.

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.