Files
wallet/tests/mocks/mock-apis.ts
2023-05-22 14:03:38 +00:00

8 lines
266 B
TypeScript

import { Page } from '@playwright/test';
import { json } from '@tests/utils';
export const setupMockApis = async (page: Page) => {
await page.route(/chrome-extension/, route => route.continue());
await page.route(/github/, route => route.fulfill(json({})));
};