mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
21 lines
788 B
TypeScript
21 lines
788 B
TypeScript
![]() |
import { test, expect } from '@playwright/experimental-ct-vue2';
|
||
|
import Button from '@/components/Button.vue';
|
||
|
import EmptyTemplate from '@/components/EmptyTemplate.vue';
|
||
|
|
||
|
test('render props', async ({ mount }) => {
|
||
|
const component = await mount(<Button title="Submit" />);
|
||
|
await expect(component).toContainText('Submit');
|
||
|
});
|
||
|
|
||
|
test('render attributes', async ({ mount }) => {
|
||
|
const component = await mount(<Button class="primary" title="Submit" />);
|
||
|
await expect(component).toHaveClass('primary');
|
||
|
});
|
||
|
|
||
|
test('get textContent of the empty template', async ({ mount }) => {
|
||
|
const component = await mount(<EmptyTemplate />);
|
||
|
expect(await component.allTextContents()).toEqual(['']);
|
||
|
expect(await component.textContent()).toBe('');
|
||
|
await expect(component).toHaveText('');
|
||
|
});
|