
Security News
Opengrep Adds Apex Support and New Rule Controls in Latest Updates
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
jest-fixed-jsdom
Advanced tools
A superset of the JSDOM environment for Jest that respects Node.js globals.
A superset of the JSDOM environment for Jest that respects Node.js globals.
[!WARNING] This package is never meant as a solution to anything. This is a workaround. Please consider testing browser code in the actual browser. You can do so both in Vitest and in Playwright at the moment.
When you use Jest with JSDOM you are getting a broken test environment. Some Node.js globals cease to exist (e.g. Request
, Response
, TextEncoder
, TextDecoder
, ReadableStream
1), while others stop behaving correctly (e.g. Event
, MessageEvent
2, structuredClone()
3). That is caused by jest-environment-jsdom
and JSDOM relying on polyfills to implement standard APIs that have been available globally both in the browser and in Node.js for years.
Here's a piece of valid JavaScript that works in both the browser and Node.js but fails in Jest/JSDOM:
new TextEncoder().encode('hello')
ReferenceError: TextEncoder is not defined
We strongly believe that a valid JavaScript code must compile regardless of what test environment you are using. In fact, having a proper test environment is crucial to get any kind of value from your tests. Jest/JSDOM take that already working environment away from you.
We've built this project aims to fix that problem, restoring the global APIs that are present in both environments, providing better interoperability, stability, and consistent runtime behavior.
This project "fixes" the following global APIs, overriding whichever polyfills they have with respective Node.js globals:
fetch()
Blob
FormData
Headers
Request
Response
ReadableStream
TextEncoder
TextDecoder
TextEncoderStream
TextDecoderStream
structuredClone()
URL
URLSearchParams
BroadcastChannel
TransformStream
npm i jest-fixed-jsdom --save-dev
In your jest.config.js
, set the testEnvironment
option to jest-fixed-jsdom
:
// jest.config.js
module.exports = {
testEnvironment: 'jest-fixed-jsdom',
}
You can use any other
testEnvironmentOptions
you need. Those will be forwarded to the underlyingjest-environment-jsdom
.
FAQs
A superset of the JSDOM environment for Jest that respects Node.js globals.
The npm package jest-fixed-jsdom receives a total of 266,793 weekly downloads. As such, jest-fixed-jsdom popularity was classified as popular.
We found that jest-fixed-jsdom demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.