Results 18 issues of Philipp Fritsche

### New option The proposed changes add a new boolean option `throw_notfound`. When set to true, the `DoctrineParamConverter` throws a `NotFoundHttpException` for optional parameters if identifier for find() or search...

# 🐛 bug report ## Preflight Checklist - [x] I have read the [Contributing Guidelines][contributing] for this project. - [x] I agree to follow the [Code of Conduct][code_of_conduct] that this...

## What kind of change does this PR introduce? Update dependencies in `browser-jsdom` `jsdom: 16.3.0 -> 16.7.0` ## What is the current behavior? Using [email protected] ## What is the new...

### Problem description 1. We run linting and tests on multiple node versions that we support according to https://github.com/testing-library/user-event/blob/ea5023141740123aede05561913cb2ec14952e2b/package.json#L13-L14 This has no merits. Our source code has no dependency on...

enhancement

Problem description: When changing an element in UI, the browser updates [`element.validity`](https://developer.mozilla.org/en-US/docs/Web/API/ValidityState). `user-event` maintains the UI value as it diverges from the IDL value, but it does not update `element.validity`...

enhancement
accuracy

- `@testing-library/user-event` version: `v14.0.0-beta.11` ### Relevant code or config ```javascript document.addEventListener('copy', e => e.clipboardData.setData('text', 'bar')) document.addEventListener('cut', e => e.clipboardData.setData('text', 'bar')) document.addEventListener('paste', e => e.clipboardData.setData('text', 'bar')) ``` ### Problem description: When...

accuracy

### Problem description An increasing number of our users applies this library in test environments which support layout. In those environments given the `clientX`/`clientY` coordinates of a pointer device, we...

enhancement

@ph-fritsche Maybe add an option to skip detection of key descriptors? Something like: ```js userEvent.type(input, '{"foo":"bar"}', { skipSpecialCharacters: true }) ``` _Originally posted by @lynxtaa in https://github.com/testing-library/user-event/issues/584#issuecomment-800922956_ --- An alternative...

enhancement

### Basic info: - **Node.js version:** 16.13.2 - **jsdom version:** 20.0.0 ### Minimal reproduction case ```js const { JSDOM } = require('jsdom') const { window } = new JSDOM const...

feature

**What**: Handle shadow hosts when moving focus per `mousedown`. **Why**: One step closer to full shadow DOM support #1026 **How**: Check for `element.shadowRoot.delegatesFocus` on the ancestors. If `true`, find the...