Skip to content

Commit bcedb22

Browse files
committed
The value property is assigned before the value attribute. Fix related tests.
1 parent 077ed23 commit bcedb22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/react-dom/src/__tests__/ReactDOMInput-test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1179,8 +1179,8 @@ describe('ReactDOMInput', () => {
11791179
'set attribute min',
11801180
'set attribute max',
11811181
'set attribute step',
1182-
'set attribute value',
11831182
'set property value',
1183+
'set attribute value',
11841184
'set attribute checked',
11851185
'set attribute checked',
11861186
]);
@@ -1244,8 +1244,8 @@ describe('ReactDOMInput', () => {
12441244
);
12451245
expect(log).toEqual([
12461246
'node.setAttribute("type", "date")',
1247-
'node.setAttribute("value", "1980-01-01")',
12481247
'node.value = "1980-01-01"',
1248+
'node.setAttribute("value", "1980-01-01")',
12491249
'node.setAttribute("checked", "")',
12501250
'node.setAttribute("checked", "")',
12511251
]);

0 commit comments

Comments
 (0)