Kevin Wojcik

Results 5 comments of Kevin Wojcik

``` diff --git a/src/Property.js b/src/Property.js index 7aba662..12cf253 100644 --- a/src/Property.js +++ b/src/Property.js @@ -7,8 +7,9 @@ export default class Property { overview() { return flatten(this.foos.map(foo => Object.entries(groupBy(foo.foo, 'bar')).map(() => {...

I got code coverage working for react using the example repo from @cenfun https://github.com/cenfun/playwright-ct-vue by just changing any imports from vue to react.

Found the workaround, you need to include `coverageConfigDefaults.exclude`. I was previously including `configDefaults.exclude`. ``` exclude: ['stuff/*', ...coverageConfigDefaults.exclude], ```

@httpete maybe this is what you were experiencing in https://github.com/vitest-dev/vitest/issues/5615?

I'm no longer have access to the project that I needed this on, but iirc we had a separate jsdom workspace for tests that need unimplemented features and used `fireEvent.wheel`...