import { test, expect } from '@playwright/experimental-ct-vue2'
import Button from './components/Button.vue'
import Counter from './components/Counter.vue'
import DefaultSlot from './components/DefaultSlot.vue'
import NamedSlots from './components/NamedSlots.vue'
import EmptyTemplate from './components/EmptyTemplate.vue'
test.use({ viewport: { width: 500, height: 500 } })
test('render props', async ({ mount }) => {
const component = await mount()
await expect(component).toContainText('Submit')
})
test('renderer and keep the component instance intact', async ({ mount }) => {
const component = await mount()
await expect(component.locator('#rerender-count')).toContainText('9001')
await component.rerender()
await expect(component.locator('#rerender-count')).toContainText('1337')
await component.rerender()
await expect(component.locator('#rerender-count')).toContainText('42')
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()
await component.click()
expect(messages).toEqual(['hello'])
})
test('render a default slot', async ({ mount }) => {
const component = await mount(
Main Content
)
await expect(component).toContainText('Main Content')
})
test('render a component with multiple slots', async ({ mount }) => {
const component = await mount(
One
Two
)
await expect(component.locator('#one')).toContainText('One')
await expect(component.locator('#two')).toContainText('Two')
})
test('render a component with a named slot', async ({ mount }) => {
const component = await mount(
Header
Main Content
Footer
);
await expect(component).toContainText('Header')
await expect(component).toContainText('Main Content')
await expect(component).toContainText('Footer')
})
test('emit a event when a slot is clicked', async ({ mount }) => {
let clickFired = false;
const component = await mount(
clickFired = true}>Main Content
);
await component.locator('text=Main Content').click();
expect(clickFired).toBeTruthy();
})
test('run hooks', async ({ page, mount }) => {
const messages = []
page.on('console', m => messages.push(m.text()))
await mount(, {
hooksConfig: { route: 'A' }
})
expect(messages).toEqual(['Before mount: {\"route\":\"A\"}', 'After mount el: HTMLButtonElement'])
})
test('unmount', async ({ page, mount }) => {
const component = await mount()
await expect(page.locator('#root')).toContainText('Submit')
await component.unmount();
await expect(page.locator('#root')).not.toContainText('Submit');
})
test('get textContent of the empty template', async ({ mount }) => {
const component = await mount();
expect(await component.allTextContents()).toEqual(['']);
expect(await component.textContent()).toBe('');
await expect(component).toHaveText('');
});