Msw/2/Req Passthrough
A new way of calling a passthrough is available in msw v2. This codemod replaces req.passthrough()
calls with the new way of doing that using exported function.
Before
rest.get('/resource', (req, res, ctx) => {return req.passthrough();});
After
import { passthrough } from 'msw';rest.get('/resource', (req, res, ctx) => {return passthrough();});
Build custom codemods
Use AI-powered codemod studio and automate undifferentiated tasks for yourself, colleagues or the community