import { test, expect } from '@playwright/experimental-ct-vue/test' import DocumentationIcon from './icons/DocumentationIcon.vue' import WelcomeItem from './WelcomeItem.vue' test.use({ viewport: { width: 500, height: 500 } }) test('should work', async ({ mount }) => { const component = await mount( Vue’s official documentation provides you with all information you need to get started. ) await expect(component).toContainText('Documentation') })