Sander

Results 92 issues of Sander

Can the `setProps` and the `unmount` functions be added? This is useful for Vue, React and Svelte: ```typescript test('update props' ({ mount }) => { const component = await mount(Component,...

feature-components

Can the event handling API be changed to that of Vue Test Utils and Testing library? Those seems more user-friendly to me than the current API. Current API: ```typescript test('event...

P3-collecting-feedback
feature-components

partial fix for https://github.com/microsoft/playwright/issues/15919

I cannot specify a component as a slot: ```javascript import { test, expect } from '@playwright/experimental-ct-vue'; import Form from './Form.vue'; test('renders a component as slot', async ({ mount }) =>...

feature-components

Struggling to test a async component. I created a suspense wrapper component with `defineComponent` which i think should work but it doesn't: ```TypeScript it("renders a async component with a suspense...

bug

partial fix for https://github.com/microsoft/playwright/issues/17206

partial fix for: https://github.com/microsoft/playwright/issues/15057

doesn't really matter but the JS version has quotes and the JSX version doesn't..

related to: https://github.com/microsoft/playwright/issues/14153, https://github.com/microsoft/playwright/issues/19380. Includes a simple base project that is consistent with the other frameworks and added a mount + unmount for standalone components _(no transpilation yet)_. @yjaaidi Perhaps...