import { test, expect } from '@playwright/experimental-ct-react'; import Counter from '@/components/Counter'; test('update props without remounting', async ({ mount }) => { const component = await mount(); await expect(component.locator('#props')).toContainText('9001'); await component.update(); await expect(component).not.toContainText('9001'); await expect(component.locator('#props')).toContainText('1337'); await expect(component.locator('#remount-count')).toContainText('1'); }); test('update callbacks without remounting', async ({ mount }) => { const component = await mount(); const messages: string[] = []; await component.update( { messages.push(message); }} /> ); await component.click(); expect(messages).toEqual(['hello']); await expect(component.locator('#remount-count')).toContainText('1'); }); test('update slots without remounting', async ({ mount }) => { const component = await mount(Default Slot); await expect(component).toContainText('Default Slot'); await component.update(Test Slot); await expect(component).not.toContainText('Default Slot'); await expect(component).toContainText('Test Slot'); await expect(component.locator('#remount-count')).toContainText('1'); });