Skip to content

chore: update msw to 2.5.0 #17124

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

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
pray
  • Loading branch information
sreya committed Mar 27, 2025
commit b9fca9184910c4044570a9026fe28d2d5a1ce989
3 changes: 2 additions & 1 deletion site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,8 @@
"typescript": "5.6.3",
"vite": "5.4.15",
"vite-plugin-checker": "0.8.0",
"vite-plugin-turbosnap": "1.0.3"
"vite-plugin-turbosnap": "1.0.3",
"web-streams-polyfill": "4.1.0"
},
"browserslist": [
"chrome 110",
Expand Down
9 changes: 9 additions & 0 deletions site/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions site/src/testHelpers/server.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Import the polyfill first
import 'web-streams-polyfill/polyfill';

import { setupServer } from "msw/node";
import { handlers } from "./handlers";

Expand Down
Loading