Sander

Results 189 comments of Sander

I'm somewhat limited in time, but I'd love to! How would you like to proceed?

Awesome, i will have a look at `setProps`/`update`! Wondering why you would choose for `({ unmount }) => {}` and `unmount(compoment)` instead of just calling `component.unmount()`? The last option is...

Have you taken into account that the `update` will not automatically be type safe as well if i follow the current implementation of `unmount`? ```typescript test('work', ({ mount, update })...

Seems like they [record](https://github.com/vuejs/test-utils/blob/main/src/emit.ts#L47) and store all [events in a collection](https://github.com/vuejs/test-utils/blob/main/src/emit.ts#L8) at [any time](https://github.com/vuejs/test-utils/blob/main/src/emit.ts#L36). Not completely sure but I think VTU does not support checking for relative timing of multiple...

Maybe i misunderstood your question. You can still verify when the events are fired because the events are stored in order/sequence. For example: ```typescript // Component.vue export default { created()...

Another inconvenience is that you have to type the messages array in the example below otherwise type errors are thrown: ```typescript test('event should work', async ({ mount }) => {...

Related to: https://github.com/microsoft/playwright/issues/21960

I agree with your statements. However, my thought process is that it's another technology that adds to an already large stack of technologies that people are being pushed towards when...

@mxschmitt I wonder why this PR is closed?😕

Related to: https://github.com/vuejs/vue-test-utils-next/issues/108