import { beforeMount, afterMount } from '@playwright/experimental-ct-vue/hooks'; import { router } from '../src/router'; import '../src/assets/index.css'; export type HooksConfig = { route?: string; routing?: boolean; } beforeMount(async ({ app, hooksConfig }) => { if (hooksConfig?.routing) app.use(router); console.log(`Before mount: ${JSON.stringify(hooksConfig)}, app: ${!!app}`); }); afterMount(async ({ instance }) => { console.log(`After mount el: ${instance.$el.constructor.name}`); });