playwright/tests/components/ct-react17/playwright/index.tsx

20 lines
520 B
TypeScript
Raw Normal View History

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