Why is MSW outputting each resolved mock? #2609
-
Beta Was this translation helpful? Give feedback.
Answered by
kettanaito
Oct 9, 2025
Replies: 1 comment 1 reply
-
|
Hey, @todor-a. That's the default logging of -await worker.start();
+await worker.start({ quiet: true });Learn more about the |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
kettanaito
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Hey, @todor-a. That's the default logging of
setupWorker, which you can disable by setting thequietoption tofalseinworker.start():Learn more about the
quietoption in our docs. That should help. Let me know how it goes!