1
0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-07-07 15:57:18 +02:00
penpot/frontend/playwright/helpers/intercepts.js
2024-05-07 10:28:17 +02:00

8 lines
169 B
JavaScript

import { interceptRPC } from "./index";
export const setupNotLogedIn = async (page) => {
await interceptRPC(page, "get-profile", "get-profile-anonymous.json");
};