Mock Service Worker with React

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ต.ค. 2024

ความคิดเห็น • 32

  • @keifer7813
    @keifer7813 11 หลายเดือนก่อน +5

    Damn, I was struggling until your video showed up on my search by the grace of God. Thanks man

  • @russelfernandes8483
    @russelfernandes8483 7 หลายเดือนก่อน

    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  7 หลายเดือนก่อน

      Glad you liked it!

  • @williamcao5139
    @williamcao5139 11 หลายเดือนก่อน +4

    Welcome back Anson, thanks for your content

    • @ansonthedev
      @ansonthedev  11 หลายเดือนก่อน +2

      Thanks and you're welcome

  • @즐거운코딩시간
    @즐거운코딩시간 11 หลายเดือนก่อน +1

    thank you so much.. i'm looked for 5 hours that genius like you... you are my angel :D 감사합니다.

  • @kettanaito
    @kettanaito 11 หลายเดือนก่อน

    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  11 หลายเดือนก่อน

      Thank you for the clarification!

  • @starBURST27
    @starBURST27 5 หลายเดือนก่อน

    Very useful tutorial! Thanks
    "msw init" is what i missed

  • @caducoder
    @caducoder 7 หลายเดือนก่อน

    Thanks bro, you really helped me with this tutorial!

    • @ansonthedev
      @ansonthedev  7 หลายเดือนก่อน

      You're welcome. :D

  • @tinabhowal7376
    @tinabhowal7376 7 หลายเดือนก่อน

    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.

  • @alexsyzoniuk8335
    @alexsyzoniuk8335 8 หลายเดือนก่อน

    9:12 How did you get that styling for methods documentation?

  • @bsujeet
    @bsujeet 6 หลายเดือนก่อน

    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

  • @bariqdharmawan6604
    @bariqdharmawan6604 11 หลายเดือนก่อน

    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  11 หลายเดือนก่อน +1

      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.

  • @chinmayghule8272
    @chinmayghule8272 7 หลายเดือนก่อน

    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  7 หลายเดือนก่อน

      I'm glad you found this video helpful! That's great to hear. :)

  • @loadingameplays
    @loadingameplays 8 หลายเดือนก่อน

    whats yout vs code theme and can you make a video with nextjs?

  • @LeandroCorso
    @LeandroCorso 6 หลายเดือนก่อน

    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!

  • @sindhumathi9209
    @sindhumathi9209 8 หลายเดือนก่อน

    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  8 หลายเดือนก่อน

      You may need to manually override the response in the test file. Check this github issue: github.com/mswjs/msw/discussions/885

  • @sarathkumarsingaraju2939
    @sarathkumarsingaraju2939 6 หลายเดือนก่อน

    Hi, How can we do decommission of MSW from our code.

  • @jnaras
    @jnaras 6 หลายเดือนก่อน

    Nice work Anson.

  • @jasondhakhwa1179
    @jasondhakhwa1179 7 หลายเดือนก่อน

    Thanks alot!!!
    This was a huje help dude

  • @vitaliipolushkin834
    @vitaliipolushkin834 11 หลายเดือนก่อน

    man, your streams last year were amazing, are you planning to do it in the future? building another app or smth?

    • @ansonthedev
      @ansonthedev  11 หลายเดือนก่อน +1

      I have been wanting to but I am thinking of ideas at the moment that I want to pursue

  • @vallivalli9097
    @vallivalli9097 2 หลายเดือนก่อน

    same i was doing but i was facing with some errors

  • @Tita.n
    @Tita.n 11 หลายเดือนก่อน

    electron series someday?

  • @prashlovessamosa
    @prashlovessamosa 11 หลายเดือนก่อน

    Can you please teach us Next14 stuff.