From 6702d778c541ebae09d5799490f645b57a12c01f Mon Sep 17 00:00:00 2001 From: Artem Zakharchenko Date: Wed, 30 Oct 2024 15:14:58 +0100 Subject: [PATCH] chore: fix confusing wording in "jest-support" --- decisions/jest-support.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decisions/jest-support.md b/decisions/jest-support.md index a19e48fac..9ff0f061d 100644 --- a/decisions/jest-support.md +++ b/decisions/jest-support.md @@ -2,7 +2,7 @@ With the introduction of [Mock Service Worker 2.0](https://mswjs.io/blog/introducing-msw-2.0), the library has made a significant step forward in the effort of embracing and promoting web standards. Since that release, its contributors have reported multiple issues with Node.js simply because MSW exposed developers to using standard Node.js APIs. -Betting and advancing the web standards is one of the goals behind this project. One of such standards is ESM. It's the present and the future of JavaScript, and we are planning on switching to ESM-only in the years to come. For that transition to happen, we need to prioritize and, at times, make hard decisions. +Betting on the web standards is one of the goals behind this project. One of such standards is ESM. It's the present and the future of JavaScript, and we are planning on switching to ESM-only in the years to come. For that transition to happen, we need to prioritize and, at times, make hard decisions. **MSW offers no official support for Jest.** It doesn't mean MSW cannot be used in Jest. We maintain usage examples of both [Jest](https://github.com/mswjs/examples/tree/main/examples/with-jest) and [Jest+JSDOM](https://github.com/mswjs/examples/tree/main/examples/with-jest-jsdom) to attest to that. Although it's necessary to mention that those examples require additional setup to tackle underlying Jest or JSDOM issues.