playwright/tests/components/ct-vue2-cli/src/notation-jsx.spec.tsx

86 lines
2.8 KiB
TypeScript
Raw Normal View History

2022-06-02 17:37:43 -07:00
import { test, expect } from '@playwright/experimental-ct-vue2'
import Button from './components/Button.vue'
2022-08-23 20:37:55 +02:00
import Counter from './components/Counter.vue'
2022-06-02 17:37:43 -07:00
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 }) => {
2022-08-27 00:47:28 +02:00
const component = await mount(<Button title="Submit" />)
2022-06-02 17:37:43 -07:00
await expect(component).toContainText('Submit')
})
2022-08-23 20:37:55 +02:00
test('renderer and keep the component instance intact', async ({ mount }) => {
const component = await mount(<Counter count={9001} />)
await expect(component.locator('#rerender-count')).toContainText('9001')
await component.rerender({ props: { count: 1337 } })
await expect(component.locator('#rerender-count')).toContainText('1337')
await component.rerender({ props: { count: 42 } })
await expect(component.locator('#rerender-count')).toContainText('42')
await expect(component.locator('#remount-count')).toContainText('1')
})
2022-06-02 17:37:43 -07:00
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();
})
test('should run hooks', async ({ page, mount }) => {
const messages = []
page.on('console', m => messages.push(m.text()))
2022-08-27 00:47:28 +02:00
await mount(<Button title="Submit" />, {
hooksConfig: { route: 'A' }
})
expect(messages).toEqual(['Before mount: {\"route\":\"A\"}', 'After mount el: HTMLButtonElement'])
})