-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(#zimic): upgrade msw to v2.7.0 #423
Conversation
The tests are still failing due to mswjs/msw#2297. |
a348f58
to
07ee856
Compare
Upgrading to 2.4.12 now results in many errors as:
|
Those errors are likely related to mswjs/msw#2146. |
Apparently, [email protected] fixes all of the issues blocking this upgrade! However, I'll keep this PR open for another week to make sure everything is fine. We'll re-run the tests after the dependency upgrade next Sunday and hopefully merge this. |
Still happening in [email protected]. |
Still happening in [email protected]. |
As mswjs/msw#2146 is still happening in the latest msw version and is causing #537, I added a manual postinstall patch to with the following diff: -if (responseJson.type?.includes("opaque")) {
+if (!request || responseJson.type?.includes("opaque")) {
return;
} |
Released in v0.12.4 🎉 |
Chore