import { test, expect } from '@playwright/experimental-ct-solid' import Button from './components/Button'; import MultiRoot from './components/MultiRoot'; test.use({ viewport: { width: 500, height: 500 } }); test('props should work', async ({ mount }) => { const component = await mount() await component.click() expect(messages).toEqual(['hello']) }); test('should unmount', async ({ page, mount }) => { const component = await mount(