2022-08-23 23:08:53 +02:00
|
|
|
import { test, expect } from '@playwright/experimental-ct-solid'
|
|
|
|
import Button from './components/Button';
|
2022-08-26 20:51:36 +02:00
|
|
|
import MultiRoot from './components/MultiRoot';
|
2022-08-23 23:08:53 +02:00
|
|
|
|
|
|
|
test.use({ viewport: { width: 500, height: 500 } });
|
|
|
|
|
2022-08-25 17:40:14 +02:00
|
|
|
test('props should work', async ({ mount }) => {
|
|
|
|
const component = await mount(<Button title="Submit" />);
|
2022-08-23 23:08:53 +02:00
|
|
|
await expect(component).toContainText('Submit');
|
|
|
|
});
|
2022-08-25 22:02:55 +02:00
|
|
|
|
|
|
|
test('callback should work', async ({ mount }) => {
|
|
|
|
const messages: string[] = []
|
|
|
|
const component = await mount(<Button title="Submit" onClick={data => {
|
|
|
|
messages.push(data)
|
|
|
|
}}></Button>)
|
|
|
|
await component.click()
|
|
|
|
expect(messages).toEqual(['hello'])
|
2022-08-26 20:51:36 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
test('should unmount', async ({ page, mount }) => {
|
|
|
|
const component = await mount(<Button title="Submit" />)
|
|
|
|
await expect(page.locator('#root')).toContainText('Submit')
|
|
|
|
await component.unmount();
|
|
|
|
await expect(page.locator('#root')).not.toContainText('Submit');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('unmount a multi root component should work', async ({ mount, page }) => {
|
|
|
|
const component = await mount(<MultiRoot />)
|
|
|
|
await expect(page.locator('#root')).toContainText('root 1')
|
|
|
|
await expect(page.locator('#root')).toContainText('root 2')
|
|
|
|
await component.unmount()
|
|
|
|
await expect(page.locator('#root')).not.toContainText('root 1')
|
|
|
|
await expect(page.locator('#root')).not.toContainText('root 2')
|
|
|
|
});
|