mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
20 lines
518 B
TypeScript
20 lines
518 B
TypeScript
import { beforeMount, afterMount } from '@playwright/experimental-ct-react/hooks';
|
|
import { BrowserRouter } from 'react-router-dom';
|
|
import '../src/assets/index.css';
|
|
|
|
export type HooksConfig = {
|
|
route?: string;
|
|
routing?: boolean;
|
|
}
|
|
|
|
beforeMount<HooksConfig>(async ({ hooksConfig, App }) => {
|
|
console.log(`Before mount: ${JSON.stringify(hooksConfig)}`);
|
|
|
|
if (hooksConfig?.routing)
|
|
return <BrowserRouter><App /></BrowserRouter>;
|
|
});
|
|
|
|
afterMount<HooksConfig>(async () => {
|
|
console.log(`After mount`);
|
|
});
|