Mock Service Worker with React

  Рет қаралды 13,461

Anson the Developer

Anson the Developer

Күн бұрын

Пікірлер
@keifer7813
@keifer7813 Жыл бұрын
Damn, I was struggling until your video showed up on my search by the grace of God. Thanks man
@russelfernandes8483
@russelfernandes8483 9 ай бұрын
thanks Anson, excellent coverage of the topic: short, sweet and everything works. I wanted to re-learn two things today and now I have both (react-testing-library basics, msw)!
@ansonthedev
@ansonthedev 9 ай бұрын
Glad you liked it!
@williamcao5139
@williamcao5139 Жыл бұрын
Welcome back Anson, thanks for your content
@ansonthedev
@ansonthedev Жыл бұрын
Thanks and you're welcome
@즐거운코딩시간
@즐거운코딩시간 Жыл бұрын
thank you so much.. i'm looked for 5 hours that genius like you... you are my angel :D 감사합니다.
@starBURST27
@starBURST27 7 ай бұрын
Very useful tutorial! Thanks "msw init" is what i missed
@alexsyzoniuk8335
@alexsyzoniuk8335 10 ай бұрын
9:12 How did you get that styling for methods documentation?
@kettanaito
@kettanaito Жыл бұрын
Hey, Anson! Thanks for talking about MSW, that was a fantastic video! My two cents about the "request.json()" confusion: MSW tries to help you out a bit and support strict request and response body types. In the context of request, you can provide a narrower request body type and only the "request.json()" method will respect it. But if you don't, the default request body type is everything that's possible to be sent in a JSON request: string, number, null, array, object, and undefined. I suppose TypeScript takes a look at that union of types and takes the lowest common denominator, that being a string type. That's why you get the string methods in autosuggestions-because TS doesn't know what exact thing the request body will have as its JSON (as JSON is not only objects!). So that's why you didn't have to parse the returned json. It was an object on runtime. Modern IDEs are also tried to be helpful so you are getting intellisense even in JS files using the `.d.ts` types published by third-parties. Hope this clarifies the behavior a bit.
@ansonthedev
@ansonthedev Жыл бұрын
Thank you for the clarification!
@LeandroCorso
@LeandroCorso 8 ай бұрын
Nice work! I have doubts about MSW in Next.JS. I'm trying to install it in a new instance of Next using typescript and app router, but when I write the handler file the lint highlight an error that msw doesn't exists, but it do! Someone know how to resolve it? thanks!
@mona__KH
@mona__KH 9 күн бұрын
that was super helpful, thank u 🙏
@tinabhowal7376
@tinabhowal7376 9 ай бұрын
Thank you soo much! I guess .. after the migration from msw 1 - msw 2 and whenever we install msw , it installs version 2. and following the old tutorials landed me in a pool of errors and doubts.
@sindhumathi9209
@sindhumathi9209 10 ай бұрын
Hey Anson, I am facing an issue while using MSW for http response, I am not able to write handlers for the same endpoint with different responses, for example. for Status Code 200 and 400 for same end point, the test is working for 200 and 400 is failing, How can I resolve this issue
@ansonthedev
@ansonthedev 9 ай бұрын
You may need to manually override the response in the test file. Check this github issue: github.com/mswjs/msw/discussions/885
@bsujeet
@bsujeet 8 ай бұрын
Hi Anson, How do we mock partial API's, If there are some API we want to actually go backend and some to mock msw worker. Is there a way we can do that
@caducoder
@caducoder 9 ай бұрын
Thanks bro, you really helped me with this tutorial!
@ansonthedev
@ansonthedev 9 ай бұрын
You're welcome. :D
@sarathkumarsingaraju2939
@sarathkumarsingaraju2939 8 ай бұрын
Hi, How can we do decommission of MSW from our code.
@jnaras
@jnaras 8 ай бұрын
Nice work Anson.
@loadingameplays
@loadingameplays 9 ай бұрын
whats yout vs code theme and can you make a video with nextjs?
@bariqdharmawan6604
@bariqdharmawan6604 Жыл бұрын
Thank you for your MSW topic Anson, it's a new thing for me as a Frontend! But I want to ask you something. When you use nextjs, it have an API Routes feature. Basically we could make an api with all the response, status code, etc. So i'm guessing it could be for mock api. What do you tought about the difference of that two things. MSW and Api Routes?
@ansonthedev
@ansonthedev Жыл бұрын
Usually when you use Next.js' build-in API router, you're not using it for mocking but using it for running an actual business function to produce output as a response. When you run unit tests, assuming you are testing React components, you are testing them in a browser environment. So the test will render the component as if it was being done by ReactDOM, and then you'll perform some operation on the component under test, and assert some behavior. The test environment knows nothing about the Next.js server at all, it doesn't know what framework or libraries you're using. So even if your component calls the Next.js API, the component is not being rendered the same way Next.js does. Remember, Next.js runs on the server, and testing your component in the browser environment does not require the Next.js server to be running. Therefore the API calls will fail and that's why you need MSW to mock those API calls.
@vallivalli9097
@vallivalli9097 4 ай бұрын
same i was doing but i was facing with some errors
@chinmayghule8272
@chinmayghule8272 9 ай бұрын
Your video is doing a better job at explaining this than the official docs. What I found repulsive is that there's an official course that's being recommended on the website on egg-something but it's behind a paywall. The documentation is absolutely not user friendly and a newbie developer (like me) is surely going to get a hard time understanding it. That's because there isn't a proper step by step guide, and the examples point to github repo which don't really help.
@ansonthedev
@ansonthedev 9 ай бұрын
I'm glad you found this video helpful! That's great to hear. :)
@vitaliipolushkin834
@vitaliipolushkin834 Жыл бұрын
man, your streams last year were amazing, are you planning to do it in the future? building another app or smth?
@ansonthedev
@ansonthedev Жыл бұрын
I have been wanting to but I am thinking of ideas at the moment that I want to pursue
@Tita.n
@Tita.n Жыл бұрын
electron series someday?
@jasondhakhwa1179
@jasondhakhwa1179 8 ай бұрын
Thanks alot!!! This was a huje help dude
@prashlovessamosa
@prashlovessamosa Жыл бұрын
Can you please teach us Next14 stuff.
Vitest with React Testing Library, Jest-dom & MSW
18:44
Learn from Scratch
Рет қаралды 11 М.
Express JS #13 - Sessions Pt. 1
16:30
Anson the Developer
Рет қаралды 15 М.
It’s all not real
00:15
V.A. show / Магика
Рет қаралды 20 МЛН
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 61 МЛН
Refactoring a React component - Design Patterns
15:19
Cosden Solutions
Рет қаралды 100 М.
I tried React and it Ruined My Life
1:19:10
Tsoding Daily
Рет қаралды 156 М.
Dioxus vs Leptos  | Rust GUI Wars #2
21:18
Creative Coders
Рет қаралды 10 М.
React State Management with Zustand & TypeScript
1:04:35
Anson the Developer
Рет қаралды 5 М.
Mock a Basic HTTP Response - Mocking REST API with Mock Service Worker
4:08
Mock Service Worker
Рет қаралды 30 М.
Front End Mock Technical Interview | JavaScript, CSS, React, and Algorithms
1:33:39
Express JS #6 - PUT Requests
14:00
Anson the Developer
Рет қаралды 8 М.
Mock vs Spy in Testing with Jest: Which is Better?
25:12
Dev tips by MoHo
Рет қаралды 13 М.
Can YOU solve this frontend interview question?
23:09
mewtru
Рет қаралды 104 М.
It’s all not real
00:15
V.A. show / Магика
Рет қаралды 20 МЛН