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 311cb12 commit 587a3c5Copy full SHA for 587a3c5
docs/dom-testing-library/api-events.mdx
@@ -70,10 +70,10 @@ fireEvent.change(getByLabelText(/picture/i), {
70
// reflect the changed value.
71
72
// Invalid:
73
-fireEvent.change(input, { target: { value: '12/05/2020' } })
+fireEvent.change(input, { target: { value: '24/05/2020' } })
74
75
// Valid:
76
-fireEvent.change(input, { target: { value: '2020-05-12' } })
+fireEvent.change(input, { target: { value: '2020-05-24' } })
77
```
78
79
**dataTransfer**: Drag events have a `dataTransfer` property that contains data
0 commit comments