Skip to content

Commit

Permalink
Update count
Browse files Browse the repository at this point in the history
  • Loading branch information
rickhanlonii committed Feb 1, 2024
1 parent 211427b commit e9b6cd3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ describe('ReactDOMServerIntegrationSelect', () => {
<option value="first">First</option>
<option value="true">True</option>
</select>,
4,
2,
);
expect(e.firstChild.selected).toBe(false);
expect(e.lastChild.selected).toBe(true);
Expand All @@ -268,7 +268,7 @@ describe('ReactDOMServerIntegrationSelect', () => {
<option value="first">First</option>
<option value="undefined">Undefined</option>
</select>,
4,
2,
);
expect(e.firstChild.selected).toBe(true);
expect(e.lastChild.selected).toBe(false);
Expand Down

0 comments on commit e9b6cd3

Please sign in to comment.