mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
21 lines
624 B
TypeScript
21 lines
624 B
TypeScript
import { beforeMount, afterMount } from '@playwright/experimental-ct-vue/hooks';
|
|
import { router } from '../src/router';
|
|
import Button from '../src/components/Button.vue';
|
|
import '../src/assets/index.css';
|
|
|
|
export type HooksConfig = {
|
|
route?: string;
|
|
routing?: boolean;
|
|
}
|
|
|
|
beforeMount<HooksConfig>(async ({ app, hooksConfig }) => {
|
|
if (hooksConfig?.routing)
|
|
app.use(router);
|
|
app.component('Button', Button);
|
|
console.log(`Before mount: ${JSON.stringify(hooksConfig)}, app: ${!!app}`);
|
|
});
|
|
|
|
afterMount<HooksConfig>(async ({ instance }) => {
|
|
console.log(`After mount el: ${instance.$el.constructor.name}`);
|
|
});
|