import { test, expect } from '@playwright/experimental-ct-solid'
import Button from './components/Button';
import DefaultChildren from './components/DefaultChildren';
import MultiRoot from './components/MultiRoot';
test.use({ viewport: { width: 500, height: 500 } });
test('props should work', async ({ mount }) => {
const component = await mount();
await expect(component).toContainText('Submit');
});
test('callback should work', async ({ mount }) => {
const messages: string[] = []
const component = await mount()
await component.click()
expect(messages).toEqual(['hello'])
})
test('default child should work', async ({ mount }) => {
const component = await mount(
Main Content
)
await expect(component).toContainText('Main Content')
})
test('should run hooks', async ({ page, mount }) => {
const messages: string[] = [];
page.on('console', m => messages.push(m.text()));
await mount(, {
hooksConfig: {
route: 'A'
}
});
expect(messages).toEqual(['Before mount: {\"route\":\"A\"}', 'After mount']);
});
test('should 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('unmount a multi root component should work', async ({ mount, page }) => {
const component = await mount()
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')
});