Alexander Scholz

Results 17 comments of Alexander Scholz

`.resize(preset.size.split('x')[0], preset.size.split('x')[1], '^')` in lib/imager.js:343 would fix this behaviour

Adding `"types": ["@testing-library/jest-dom"]` to tsconfig solves this issue for me.

Make sure, that the file importing `@testing-library/cypress/add-commands` is not considered a spec file. E.g. if you set `specPattern: "cypress/e2e/**/*e2e.{js,jsx,ts,tsx}"` or if you name your support file `support.cy.ts`

> same issue, a lot of types are removed ( used in other types ). It works when i fix the version of the preset to the 4.3.3 I had...

This seems to be expected behaviour. In your first screen recording "Nebraska" is half way visible. Your cursor briefly hovers the menu item which triggers a focus event. That event...

Same here. "CLICK" gets logged but the test fails: ``` import { fireEvent, render, screen } from "@testing-library/react" import userEvent from "@testing-library/user-event" const user = userEvent.setup() test('click', async () =>...