import { test, expect } from '@playwright/experimental-ct-vue' import Button from './components/Button.vue' import Counter from './components/Counter.vue' import DefaultSlot from './components/DefaultSlot.vue' import MultiRoot from './components/MultiRoot.vue' import NamedSlots from './components/NamedSlots.vue' import Component from './components/Component.vue' import EmptyTemplate from './components/EmptyTemplate.vue' test.use({ viewport: { width: 500, height: 500 } }) test('render props', async ({ mount }) => { const component = await mount(Button, { props: { title: 'Submit' } }) await expect(component).toContainText('Submit') }) test('update props without remounting', async ({ mount }) => { const component = await mount(Counter, { props: { count: 9001 } }) await expect(component.locator('#props')).toContainText('9001') await component.update({ props: { count: 1337 } }) await expect(component).not.toContainText('9001') await expect(component.locator('#props')).toContainText('1337') await expect(component.locator('#remount-count')).toContainText('1') }) test('update event listeners without remounting', async ({ mount }) => { const component = await mount(Counter) const messages = [] await component.update({ on: { submit: (count) => messages.push(count) } }) await component.click(); expect(messages).toEqual(['hello']) await expect(component.locator('#remount-count')).toContainText('1') }) test('update slots without remounting', async ({ mount }) => { const component = await mount(Counter, { slots: { default: 'Default Slot' } }) await expect(component).toContainText('Default Slot') await component.update({ slots: { main: 'Test Slot' } }) await expect(component).not.toContainText('Default Slot') await expect(component).toContainText('Test Slot') await expect(component.locator('#remount-count')).toContainText('1') }) test('emit an submit event when the button is clicked', async ({ mount }) => { const messages = [] const component = await mount(Button, { props: { title: 'Submit' }, on: { submit: (data) => messages.push(data) } }) await component.click() expect(messages).toEqual(['hello']) }) test('render a default slot', async ({ mount }) => { const component = await mount(DefaultSlot, { slots: { default: 'Main Content' } }) await expect(component.getByRole('strong')).toContainText('Main Content') }) test('render a component with multiple slots', async ({ mount }) => { const component = await mount(DefaultSlot, { slots: { default: [ '