mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
20 lines
495 B
TypeScript
20 lines
495 B
TypeScript
import { beforeMount, afterMount } from '@playwright/experimental-ct-solid/hooks';
|
|
import { Router } from "@solidjs/router";
|
|
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 <Router><App /></Router>;
|
|
});
|
|
|
|
afterMount<HooksConfig>(async () => {
|
|
console.log(`After mount`);
|
|
});
|