We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5bbb5b commit de73922Copy full SHA for de73922
packages/react-time-picker/src/TimeInput.spec.tsx
@@ -338,7 +338,8 @@ describe('TimeInput', () => {
338
expect(minuteInput).toHaveFocus();
339
});
340
341
- it('does not jump to the next field when right arrow is pressed when the last input is focused', async () => {
+ // See https://github.com/capricorn86/happy-dom/issues/1592
342
+ it.skip('does not jump to the next field when right arrow is pressed when the last input is focused', async () => {
343
const { container } = render(<TimeInput {...defaultProps} maxDetail="second" />);
344
345
const select = container.querySelector('select') as HTMLSelectElement;
0 commit comments