import { beforeMount, afterMount } from '@playwright/experimental-ct-react17/hooks'; import { BrowserRouter } from 'react-router-dom'; import '../src/assets/index.css'; export type HooksConfig = { route?: string; routing?: boolean; } beforeMount(async ({ hooksConfig, App }) => { console.log(`Before mount: ${JSON.stringify(hooksConfig)}`); if (hooksConfig?.routing) return ; }); afterMount(async () => { console.log(`After mount`); });