import {Page} from '@playwright/test'; export const mockResponseBody = async >({ page, url, body, times, }: { page: Page; url: string; body: T | (() => T); times?: number; }) => { await page.route( url, async (route) => { const payload = typeof body === 'function' ? body() : body; await route.fulfill({ status: 200, contentType: 'application/json', body: JSON.stringify(payload), }); }, {times}, ); };