Msw
migration
byCodemod

Msw/2/Response Usages

/icons/calendar.svg

Last update

Jul 24, 2024

To send a response from MSW handler, one would previously use something like res(ctx.text("Hello world")). In msw v2, this is achieved by returning a native WebAPI Response object. msw v2 conveniently exposes a HttpResponse function that has useful methods for creating just that object with a desired body. This codemod replaces the old res calls with the new HttpResponse function calls and a bunch of ctx utilities that usually go with it. See examples below.

This codemod does not remove unused properties on the callback signature due to the fact that there are more changes in other codemods included in the upgrade-recipe that rely on it. To apply these changes, you will have to run the recipe or run a callback-signature codemod that will do only that and replace all the references of old signature arguments.

Before

import { rest } from 'msw';
rest.get('/user', (req, res, ctx) => {
return res(
ctx.json({ id: 'abc-123' }),
ctx.cookie('roses', 'red'),
ctx.cookie('violets', 'blue'),
ctx.set('X-Custom', 'value'),
);
});

After

import { rest } from 'msw';
rest.get('/user', (req, res, ctx) => {
return HttpResponse.json(
{ id: 'abc-123' },
{
headers: {
'X-Custom': 'value',
'Set-Cookie': 'roses=red;violets=blue;',
},
},
);
});

Before

import { rest } from 'msw';
rest.get('/user', (req, res, ctx) => {
return res(ctx.text('Hello world!'), ctx.delay(500), ctx.status(401));
});

After

import { rest, delay } from 'msw';
rest.get('/user', (req, res, ctx) => {
await delay(500);
return HttpResponse.text("Hello world", {
status: 401,
});
});

Before

import { rest } from 'msw';
rest.get('/user', (req, res, ctx) => {
return res(ctx.body('Hello world!'), ctx.set('Content-Type', 'text/plain'));
});

After

import { delay, rest } from 'msw';
rest.get('/user', (req, res, ctx) => {
return HttpResponse.text('Hello world');
});

Before

import { rest } from 'msw';
rest.get('/user', (req, res, ctx) => {
return res(ctx.text('Hello world!'));
});

After

import { rest } from 'msw';
rest.get('/user', (req, res, ctx) => {
return HttpResponse.text('Hello world');
});

Before

graphql.query('GetUser', (req, res, ctx) => {
return res(
ctx.data({
user: { firstName: 'John' },
}),
ctx.errors([
{ message: `Failed to login: user "${username}" does not exist` },
]),
ctx.extensions({
requestId: 'abc-123',
}),
);
});

After

graphql.query('GetUser', (req, res, ctx) => {
return HttpResponse.json(
data: {
user: { firstName: 'John' },
},
errors: [
{ message: `Failed to login: user "${username}" does not exist` },
],
extensions: {
requestId: 'abc-123',
},
)
})

Build custom codemods

Use AI-powered codemod studio and automate undifferentiated tasks for yourself, colleagues or the community

background illustrationGet Started Now