From b4a3b57ac19c607193b9e13422db83eb4efa28af Mon Sep 17 00:00:00 2001 From: Matan Borenkraout Date: Wed, 22 May 2024 16:37:26 +0300 Subject: [PATCH] docs: fix note not closed --- docs/react-testing-library/example-intro.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/react-testing-library/example-intro.mdx b/docs/react-testing-library/example-intro.mdx index 4cc320185..a5d67830f 100644 --- a/docs/react-testing-library/example-intro.mdx +++ b/docs/react-testing-library/example-intro.mdx @@ -66,10 +66,12 @@ test('loads and displays greeting', async () => { See the following sections for a detailed breakdown of the test :::note + We recommend using the [Mock Service Worker (MSW)](https://github.com/mswjs/msw) library to declaratively mock API communication in your tests instead of stubbing `window.fetch`, or relying on third-party adapters. + ::: ```jsx title="__tests__/fetch.test.jsx"