Msw/2/Req Passthrough

1.0.2Last update Jan 10, 2025
by@Codemod
Msw
migration

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

background illustrationGet Started Now