mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
63 lines
1.9 KiB
TypeScript
63 lines
1.9 KiB
TypeScript
![]() |
import { test, expect } from '@playwright/experimental-ct-vue2'
|
||
|
import Button from './components/Button.vue'
|
||
|
import DefaultSlot from './components/DefaultSlot.vue'
|
||
|
import NamedSlots from './components/NamedSlots.vue'
|
||
|
|
||
|
test.use({ viewport: { width: 500, height: 500 } })
|
||
|
|
||
|
test('props should work', async ({ mount }) => {
|
||
|
const component = await mount(<Button title='Submit'></Button>)
|
||
|
await expect(component).toContainText('Submit')
|
||
|
})
|
||
|
|
||
|
test('event should work', async ({ mount }) => {
|
||
|
const messages = []
|
||
|
const component = await mount(<Button title='Submit' v-on:submit={data => {
|
||
|
messages.push(data)
|
||
|
}}></Button>)
|
||
|
await component.click()
|
||
|
expect(messages).toEqual(['hello'])
|
||
|
})
|
||
|
|
||
|
test('default slot should work', async ({ mount }) => {
|
||
|
const component = await mount(<DefaultSlot>
|
||
|
Main Content
|
||
|
</DefaultSlot>)
|
||
|
await expect(component).toContainText('Main Content')
|
||
|
})
|
||
|
|
||
|
test('multiple slots should work', async ({ mount }) => {
|
||
|
const component = await mount(<DefaultSlot>
|
||
|
<div id="one">One</div>
|
||
|
<div id="two">Two</div>
|
||
|
</DefaultSlot>)
|
||
|
await expect(component.locator('#one')).toContainText('One')
|
||
|
await expect(component.locator('#two')).toContainText('Two')
|
||
|
})
|
||
|
|
||
|
test('named slots should work', async ({ mount }) => {
|
||
|
const component = await mount(<NamedSlots>
|
||
|
<template v-slot:header>
|
||
|
Header
|
||
|
</template>
|
||
|
<template v-slot:main>
|
||
|
Main Content
|
||
|
</template>
|
||
|
<template v-slot:footer>
|
||
|
Footer
|
||
|
</template>
|
||
|
</NamedSlots>);
|
||
|
await expect(component).toContainText('Header')
|
||
|
await expect(component).toContainText('Main Content')
|
||
|
await expect(component).toContainText('Footer')
|
||
|
})
|
||
|
|
||
|
test('slot should emit events', async ({ mount }) => {
|
||
|
let clickFired = false;
|
||
|
const component = await mount(<DefaultSlot>
|
||
|
<span v-on:click={() => clickFired = true}>Main Content</span>
|
||
|
</DefaultSlot>);
|
||
|
await component.locator('text=Main Content').click();
|
||
|
expect(clickFired).toBeTruthy();
|
||
|
})
|